[Mono-bugs] [Bug 61702][Maj] Changed - mcs crash with a block of code I try to compile

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 19 Jul 2004 13:38:32 -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 miguel@ximian.com.

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

--- shadow/61702	2004-07-18 10:40:31.000000000 -0400
+++ shadow/61702.tmp.31323	2004-07-19 13:38:31.000000000 -0400
@@ -2,13 +2,13 @@
 Product: Mono: Compilers
 Version: unspecified
 OS: All
 OS Details: Windows 2000 SP4, mono 1.0
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Major
 Component: C#
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: mikko.korkalo@f-solutions.net               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -100,6 +100,19 @@
 How often does this happen? 
 Every time I try to compile
 
 Additional Information:
 System.Security.Cryptography.RandomNumberGenerator does not seem to cause 
 it. Seems like this has something to do with the constants I am using.
+
+------- Additional Comments From miguel@ximian.com  2004-07-19 13:38 -------
+A simpler test case:
+
+class X {
+public static void Main ()
+{
+        const byte min=97;
+        const byte max=122;
+        const byte range = max - min;
+}
+}
+