[Mono-bugs] [Bug 30043][Nor] New - Is it allowed to use virtual methods in a delegate creating expression ?
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
9 Sep 2002 08:27:18 -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 martin@gnome.org.
http://bugzilla.ximian.com/show_bug.cgi?id=30043
--- shadow/30043 Mon Sep 9 04:27:18 2002
+++ shadow/30043.tmp.15494 Mon Sep 9 04:27:18 2002
@@ -0,0 +1,26 @@
+Bug#: 30043
+Product: Mono/MCS
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: martin@gnome.org
+ReportedBy: martin@gnome.org
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Is it allowed to use virtual methods in a delegate creating expression ?
+
+Need to check this.
+
+ delegate void FooDelegate ();
+ virtual void Foo ();
+
+ void Test {
+ FooDelegate foo = new FooDelegate (foo);
+ }