[Mono-bugs] [Bug 74600][Wis] New - Regression in finally {} flow control
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 13 Apr 2005 17:53:08 -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 grompf@sublimeintervention.com.
http://bugzilla.ximian.com/show_bug.cgi?id=74600
--- shadow/74600 2005-04-13 17:53:08.000000000 -0400
+++ shadow/74600.tmp.31584 2005-04-13 17:53:08.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 74600
+Product: Mono: Compilers
+Version: 1.1
+OS:
+OS Details: OSX 10.3.8
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: grompf@sublimeintervention.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Regression in finally {} flow control
+
+The following test case will not compile on HEAD; but does compile on MS CLR
+
+using System;
+
+class T{
+ public void Method () {
+ try {
+ throw new Exception ();
+ } finally {
+ int i = 0;
+ switch (i) {
+ case 0:
+ break;
+ case 1:
+ break;
+ }
+ }
+ }
+ }