[Mono-bugs] [Bug 440774] `int*[]' array initializer problem

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Fri Oct 31 17:58:58 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=440774

User martin at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=440774#c1





--- Comment #1 from Martin Baulig <martin at novell.com>  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.


More information about the mono-bugs mailing list