[Mono-bugs] [Bug 72852][Wis] Changed - mcs fails to lookup methods with `final virtual` modifiers
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 23 Feb 2005 11:45:21 -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 nazgul@omega.pl.
http://bugzilla.ximian.com/show_bug.cgi?id=72852
--- shadow/72852 2005-02-23 11:33:44.000000000 -0500
+++ shadow/72852.tmp.11926 2005-02-23 11:45:21.000000000 -0500
@@ -102,6 +102,14 @@
'virtual' is treated as an override, and hence doesn't take part in
overload resolution.
What does a 'final virtual' correspond to? Is it meaningful without
already having a slot for the function?
+
+------- Additional Comments From nazgul@omega.pl 2005-02-23 11:45 -------
+Probably this IL is in fact invalid. Originally in our compiler the
+virtual came from the fact of implementing interface method and final
+was just a marker that this method was not originally virtual and cannot
+be overriden.
+I need to check the spec, maybe in this situation 'new' MUST be
+specified. If so, I do not expect mono to follow MS.NET's behaviour here .