[Mono-bugs] [Bug 57840][Maj] New - Shift? Code not executed correctly
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 29 Apr 2004 13:32: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 classdevelopment@a-softtech.com.
http://bugzilla.ximian.com/show_bug.cgi?id=57840
--- shadow/57840 2004-04-29 13:32:13.000000000 -0400
+++ shadow/57840.tmp.26724 2004-04-29 13:32:13.000000000 -0400
@@ -0,0 +1,52 @@
+Bug#: 57840
+Product: Mono: Runtime
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: ClassDevelopment@A-SoftTech.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Shift? Code not executed correctly
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+Code is not executed correctly
+
+Steps to reproduce the problem:
+Consider the following code:
+
+using System;
+
+class Test
+{
+ public static void Main ()
+ {
+ for (int x = 0; x < 10000000; x++)
+ {
+ long i = 0;
+ for (long y = 0; y < 100; y++)
+ i += y >> 4;
+ }
+ Console.WriteLine ("Print something" );
+ }
+}
+
+Actual Results:
+Prints NOTHING at the console
+
+Expected Results:
+Prints "Print something" at the console (works on ms)
+
+How often does this happen?
+always
+
+Additional Information: