[Mono-bugs] [Bug 28106][Nor] New - another int/uint compilation error
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
23 Jul 2002 09:02:24 -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 lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=28106
--- shadow/28106 Tue Jul 23 05:02:24 2002
+++ shadow/28106.tmp.523 Tue Jul 23 05:02:24 2002
@@ -0,0 +1,28 @@
+Bug#: 28106
+Product: Mono/MCS
+Version: unspecified
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: lupus@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: another int/uint compilation error
+
+The following program doesn't compile with mcs, running with either runtime.
+It works fine with csc.
+using System;
+class T {
+ public static int Main() {
+ if (Int32.MinValue == 0x80000000)
+ return 1;
+ return 0;
+ }
+}