[Mono-bugs] [Bug 52697][Nor] New - mcs allows "intuitive" partial name qalifications

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 9 Jan 2004 02:25:29 -0500 (EST)


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 ndrochak@gol.com.

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

--- shadow/52697	2004-01-09 02:25:29.000000000 -0500
+++ shadow/52697.tmp.3770	2004-01-09 02:25:29.000000000 -0500
@@ -0,0 +1,26 @@
+Bug#: 52697
+Product: Mono/Compilers
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: C#
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: ndrochak@gol.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mcs allows "intuitive" partial name qalifications
+
+csc fails on the following test with error CS0234.  Mcs compiles it without
+errors.  Note the "System." in front of "Enum"...
+
+using System;
+namespace A.B.System {
+public class Test { public static void Main () {
+        Console.WriteLine (typeof (System.Enum));
+} } }