[Mono-bugs] [Bug 40541][Nor] New - Sealed class bit not honored.
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Sun, 30 Mar 2003 14:47:04 -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=40541
--- shadow/40541 Sun Mar 30 14:47:03 2003
+++ shadow/40541.tmp.23120 Sun Mar 30 14:47:04 2003
@@ -0,0 +1,28 @@
+Bug#: 40541
+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: Sealed class bit not honored.
+
+MCS does not flag an error when inheriting from a sealed class:
+
+sealed class X {
+}
+
+class Y: X {
+static void Main ()
+{
+}
+}