[Mono-bugs] [Bug 30020][Maj] Changed - When compiling Attribute-derivatives, PendingImplementation is broken
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
11 Sep 2002 20:05:00 -0000
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=30020
--- shadow/30020 Wed Sep 11 09:14:14 2002
+++ shadow/30020.tmp.3127 Wed Sep 11 16:05:00 2002
@@ -10,14 +10,13 @@
Component: Misc
AssignedTo: lupus@ximian.com
ReportedBy: miguel@ximian.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
-Cc:
-Summary: mcs doesn't set correctly the flags on (non-virtual) insterface method implementations
+Summary: When compiling Attribute-derivatives, PendingImplementation is broken
OtherBugsDependingOnThis: 29479
The following program crashes Mono:
using System;
using System.Reflection;
@@ -65,6 +64,14 @@
static void Main () {}
}
mcs sets only the public flag, while csc will set also:
final virtual hidebysig newslot.
PEVerify will complain, too, if run on the resulting executable.
+
+------- Additional Comments From miguel@ximian.com 2002-09-11 16:05 -------
+Ok, this bug seems to have been introduced during the revamp of the
+MethodCore base class. The issue is that the code is not even
+noticing that we have a pending implementation (when we are a
+derivative of the `Attribute' class).
+
+Researching.