[Mono-bugs] [Bug 71012][Wis] New - We do not report CS0541

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 5 Jan 2005 01:36:07 -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 duncan@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=71012

--- shadow/71012	2005-01-05 01:36:07.000000000 -0500
+++ shadow/71012.tmp.1004	2005-01-05 01:36:07.000000000 -0500
@@ -0,0 +1,33 @@
+Bug#: 71012
+Product: Mono: Compilers
+Version: 1.0
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: duncan@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: We do not report CS0541
+
+cs0541.cs is on mcs-expect-no-errors:
+
+// cs0541.cs: 'ICloneable.Clone' : explicit interface declaration can only
+be declared in a class or struct
+// Line: 7
+
+using System;
+
+interface Interface: ICloneable {
+        void ICloneable.Clone ();
+}
+
+class Test {
+	static void Main () {}
+}