[Mono-bugs] [Bug 35567][Nor] New - using-alias directive does not work with arrays
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
13 Dec 2002 11:38:52 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by vargaz@freemail.hu.
http://bugzilla.ximian.com/show_bug.cgi?id=35567
--- shadow/35567 Fri Dec 13 06:38:52 2002
+++ shadow/35567.tmp.19946 Fri Dec 13 06:38:52 2002
@@ -0,0 +1,31 @@
+Bug#: 35567
+Product: Mono/MCS
+Version: unspecified
+OS: Debian Woody
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: vargaz@freemail.hu
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: using-alias directive does not work with arrays
+
+mcs fails to compile the following code, while MS csc compiles it just fine:
+
+using System2 = System;
+class X
+{
+ static void Main ()
+ {
+ // This works
+ System.Net.IPAddress[] addresses1;
+ // This doesn't
+ System2.Net.IPAddress[] addresses2;
+ }
+}