[Mono-bugs] [Bug 55786][Wis] Changed - `override' members should not be included in member lookup

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 18 Mar 2004 21:51:19 -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 bmaurer@users.sf.net.

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

--- shadow/55786	2004-03-18 21:46:50.000000000 -0500
+++ shadow/55786.tmp.1336	2004-03-18 21:51:19.000000000 -0500
@@ -12,12 +12,13 @@
 ReportedBy: bmaurer@users.sf.net               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
 Summary: `override' members should not be included in member lookup
+OtherBugsDependingOnThis: 55780
 
 The following code:
 class A {
 	public virtual int Foo () { return 1; }
 }
 class B : A {
@@ -43,6 +44,10 @@
 ------- Additional Comments From bmaurer@users.sf.net  2004-03-18 20:53 -------
 we have to do this for properties too, so it is going to be !fun.
 
 ------- Additional Comments From bmaurer@users.sf.net  2004-03-18 21:46 -------
 Actually, this may not be so hard. We could just not put override
 methods in the MemberCache.
+
+------- Additional Comments From bmaurer@users.sf.net  2004-03-18 21:51 -------
+Actually, if I fix the bug in the way above, I could simplify the
+Property code in such a way that it would fix bug 55780.