[Mono-bugs] [Bug 36743][Min] New - Should catch attempt of static explicit interface implementation
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Tue, 14 Jan 2003 21:29:00 -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=36743
--- shadow/36743 Tue Jan 14 21:29:00 2003
+++ shadow/36743.tmp.7488 Tue Jan 14 21:29:00 2003
@@ -0,0 +1,29 @@
+Bug#: 36743
+Product: Mono/MCS
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Should catch attempt of static explicit interface implementation
+
+This should produce an error 106:
+
+interface A {
+ void B ();
+}
+
+
+class Y : A{
+
+ static void A.B () { }
+}