[Mono-bugs] [Bug 60438][Wis] New - [GMCS] abstract class Foo <T> ... class Bar <T> : Foo <T>
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 18 Jun 2004 15:02:58 -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 bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=60438
--- shadow/60438 2004-06-18 15:02:58.000000000 -0400
+++ shadow/60438.tmp.25519 2004-06-18 15:02:58.000000000 -0400
@@ -0,0 +1,28 @@
+Bug#: 60438
+Product: Mono: Compilers
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: C#
+AssignedTo: martin@ximian.com
+ReportedBy: bmaurer@users.sf.net
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: [GMCS] abstract class Foo <T> ... class Bar <T> : Foo <T>
+
+class Foo {
+ static void Main () {}
+}
+
+abstract class Foo <T> {
+ class Bar <T> : Foo <T> {
+ }
+}
+
+Does not compile