[Mono-bugs] [Bug 63705][Maj] New - Regression: Incorrect CS0109

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 23 Aug 2004 13:20:45 -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=63705

--- shadow/63705	2004-08-23 13:20:45.000000000 -0400
+++ shadow/63705.tmp.20032	2004-08-23 13:20:45.000000000 -0400
@@ -0,0 +1,32 @@
+Bug#: 63705
+Product: Mono: Compilers
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: C#
+AssignedTo: marek.safar@seznam.cz                            
+ReportedBy: martin@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Regression: Incorrect CS0109
+
+Your latest MCS changes made MCS report an incorrect CS0109 on the
+following example:
+
+====
+interface IFoo
+{
+	void Test (int t);
+}
+
+interface IBar : IFoo
+{
+	new int Test (int t);
+}
+=====