[Mono-bugs] [Bug 74603][Nor] New - Regression in compiler.
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 13 Apr 2005 23:18:11 -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=74603
--- shadow/74603 2005-04-13 23:18:11.000000000 -0400
+++ shadow/74603.tmp.1051 2005-04-13 23:18:11.000000000 -0400
@@ -0,0 +1,35 @@
+Bug#: 74603
+Product: Mono: Compilers
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Regression in compiler.
+
+The following program no longer compiles with SVN:
+
+class X {
+
+ static void Main ()
+ {
+ int n = 0;
+
+ try {
+ } finally {
+ switch (n){
+ case 0:
+ break;
+ }
+ }
+ }
+}