[Mono-bugs] [Bug 39054][Nor] New - division by zero in the constant folder
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Tue, 4 Mar 2003 13:39:21 -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 lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=39054
--- shadow/39054 Tue Mar 4 13:39:21 2003
+++ shadow/39054.tmp.28641 Tue Mar 4 13:39:21 2003
@@ -0,0 +1,24 @@
+Bug#: 39054
+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: division by zero in the constant folder
+
+The following program makes mcs crash during compilation:
+ public class a {
+ public static void Main() {
+ System.Console.WriteLine(32 % 0);
+ }
+ }