[Mono-bugs] [Bug 58222][Min] New - using X = YY compiles while failing with csc
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 8 May 2004 02:00:13 -0400 (EDT)
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 gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=58222
--- shadow/58222 2004-05-08 02:00:13.000000000 -0400
+++ shadow/58222.tmp.7364 2004-05-08 02:00:13.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 58222
+Product: Mono: Compilers
+Version: unspecified
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: gonzalo@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: using X = YY compiles while failing with csc
+
+Try compiling:
+-----
+using System;
+using System.Diagnostics;
+
+using PP = Process;
+
+class Test {
+ static void Main ()
+ {
+ }
+}
+---
+
+Actual results:
+Compilation succeeded.
+
+Expected results:
+error CS0246: cannot find type or namespace 'Process' ....