[Mono-bugs] [Bug 30485][Min] Changed - using-alias directive not handled correctly

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
15 Nov 2002 17:14:30 -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 martin@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=30485

--- shadow/30485	Tue Sep 17 15:25:27 2002
+++ shadow/30485.tmp.2106	Fri Nov 15 12:14:30 2002
@@ -2,13 +2,13 @@
 Product: Mono/MCS
 Version: unspecified
 OS: Debian Woody
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Minor
 Component: Misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: vargaz@freemail.hu               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -21,7 +21,26 @@
 'System' namespace. After taking a look at the C# spec (section 16.3.1), I
  believe the behavior of csc is correct.
 
 ------- Additional Comments From vargaz@freemail.hu  2002-09-17 15:25 -------
 Created an attachment (id=2280)
 testcase
+
+
+------- Additional Comments From martin@ximian.com  2002-11-15 12:14 -------
+Please include such small testcases in your bug report rather than attaching them, this makes it a lot easier to look at the bug 
+reports and to print them.  Thanks.
+
+=====
+using System2 = System;
+
+namespace Foo {
+  class System {
+	static void Main() {
+	  System2.Console.WriteLine("FOO");
+	}
+  }
+}
+=====
+
+