https://bugzilla.novell.com/show_bug.cgi?id=440774
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=440774#c1 --- Comment #1 from Martin Baulig <[EMAIL PROTECTED]> 2008-10-31 15:58:55 MDT --- It works fine if you change ==== int*[] array = { the_ptr }; int*[] array2 = { a_ptr }; ==== into ==== int*[] array = new int*[] { the_ptr }; int*[] array2 = new int*[] { a_ptr }; ==== -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
