[Mono-bugs] [Bug 64226][Min] New - We don't report CS1017 (errors/cs1017.cs)
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 26 Aug 2004 18:54:19 -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 martin@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=64226
--- shadow/64226 2004-08-26 18:54:19.000000000 -0400
+++ shadow/64226.tmp.28460 2004-08-26 18:54:19.000000000 -0400
@@ -0,0 +1,28 @@
+Bug#: 64226
+Product: Mono: Compilers
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: martin@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: We don't report CS1017 (errors/cs1017.cs)
+
+// cs1017.cs: Try statement already has an empty catch block
+// Line: 8
+
+class ClassMain {
+ public static void Main() {
+ try { }
+ catch {}
+ catch (System.Exception) { }
+ }
+}