[Mono-bugs] [Bug 75024][Wis] New - If one Interface is derived from another one the methods of the base interface are not found

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun May 22 04:30:40 EDT 2005


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 mpfob at gmx.de.

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

--- shadow/75024	2005-05-22 04:30:40.000000000 -0400
+++ shadow/75024.tmp.5830	2005-05-22 04:30:40.000000000 -0400
@@ -0,0 +1,53 @@
+Bug#: 75024
+Product: Mono: Compilers
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs at ximian.com                            
+ReportedBy: mpfob at gmx.de               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: If one Interface is derived from another one the methods of the base interface are not found
+
+Description of Problem:
+If one Interface is derived from another one the methods of the base
+interface are not found.
+Example:
+public interface iBase
+{
+ void a();
+}
+
+public interface iDer : iBase
+{
+}
+
+...
+iBase iBaseInst = iDerInstance;
+iBaseInst .a();  // error
+
+
+Steps to reproduce the problem:
+1. Compile test-166.cs
+
+Actual Results:
+Error CS0117 is reported
+
+Expected Results:
+No Error
+
+
+How often does this happen? 
+Always
+
+
+Additional Information:
+This error must have existed before, as there is already a testcase showing
+this error.


More information about the mono-bugs mailing list