[Mono-bugs] [Bug 71497][Wis] New - msc fails to report CS0029 error
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 13 Feb 2005 03:54:13 -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 duncan@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=71497
--- shadow/71497 2005-02-13 03:54:12.000000000 -0500
+++ shadow/71497.tmp.22833 2005-02-13 03:54:12.000000000 -0500
@@ -0,0 +1,37 @@
+Bug#: 71497
+Product: Mono: Compilers
+Version: 1.1
+OS: All
+OS Details:
+Status: RESOLVED
+Resolution: DUPLICATE
+Severity: Unknown
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: peter@novonyx.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: msc fails to report CS0029 error
+
+The code below fails on csc with this error:
+error CS0029: Cannot implicitly convert type 'long' to 'uint'
+but successfully compiles on msc.
+
+namespace MWFTestApplication {
+ class MainWindow {
+ public enum Testme : uint {
+ value = (1L << 1)
+ }
+
+ static void Main() {
+ }
+ }
+}
+
+------- Additional Comments From duncan@ximian.com 2005-02-13 03:54 -------
+
+
+*** This bug has been marked as a duplicate of 71498 ***