[Mono-bugs] [Bug 69153][Nor] Changed - mcs improperly emits some properties
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 5 Nov 2004 17:36:08 -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=69153
--- shadow/69153 2004-11-05 15:37:29.000000000 -0500
+++ shadow/69153.tmp.23317 2004-11-05 17:36:08.000000000 -0500
@@ -1,14 +1,14 @@
Bug#: 69153
Product: Mono: Compilers
Version: 1.1
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: C#
AssignedTo: mono-bugs@ximian.com
ReportedBy: jluke@cfl.rr.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -58,6 +58,20 @@
and 1 with mcs and either runtime
This is a problem with how the T.Foo is emitted
by mcs. The "hidden" get method is visible to reflection
when it is compiled by mcs and causes monocop to fail
a rule that is effected by this.
+
+------- Additional Comments From miguel@ximian.com 2004-11-05 17:36 -------
+My understanding of this is:
+
+The problem is that we produce proxies for methods that implement
+interface methods on parent classes.
+
+But we should only do this for the explicit list of implemented
+interfaces, not the implicitly implemented ones, in this case
+I2 is explicitly listed while I is not.
+
+Am trying to figure out the rationale for this though.
+
+Miguel.