[Mono-bugs] [Bug 80749][Nor] Changed - ironpython 1.1a1 doesn't build anymore.

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Mon Feb 12 19:14:58 EST 2007


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 marek.safar at seznam.cz.

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

--- shadow/80749	2007-02-12 17:27:43.000000000 -0500
+++ shadow/80749.tmp.15198	2007-02-12 19:14:58.000000000 -0500
@@ -269,6 +269,41 @@
 IronPython/CodeDom/Compiler.cs(35,19): error CS0534:
 `IronPython.CodeDom.PythonGenerator' does not implement inherited
 abstract member
 `System.CodeDom.Compiler.CodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)'
 Compilation failed: 5 error(s), 0 warnings
 
+
+------- Additional Comments From marek.safar at seznam.cz  2007-02-12 19:14 -------
+Yes, Miguel that's correct. However, I'm not sure whether it is mcs or
+csc bug. I have managed to produce simple test case.
+
+abstract class A : I
+{
+	protected abstract void M ();
+		
+	void I.M ()
+	{
+	}
+}
+
+interface I
+{
+	void M ();
+}
+
+class C : A, I
+{
+	protected override void M ()
+	{
+	}
+	
+	public static void Main ()
+	{
+	}
+}
+
+
+We produce following error which seems to me ok.
+
+?.cs(15,7): error CS0534: `C' does not implement inherited abstract
+member `A.M()'


More information about the mono-bugs mailing list