[Mono-bugs] [Bug 51430][Nor] New - Goto scope failure.
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 26 Nov 2003 20:35:44 -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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=51430
--- shadow/51430 2003-11-26 20:35:44.000000000 -0500
+++ shadow/51430.tmp.16780 2003-11-26 20:35:44.000000000 -0500
@@ -0,0 +1,30 @@
+Bug#: 51430
+Product: Mono/MCS
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Goto scope failure.
+
+The following program fails to compile with MCS:
+
+class X {
+ static void Main() {
+ if (1 > 2)
+ goto each_logic_expr;
+
+ int j;
+ each_logic_expr:
+ ;
+ }
+}