[Mono-bugs] [Bug 78678][Nor] New - mcs/gmcs can't match a delegate with 'params flag' against a method

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Tue Jun 20 10:45:27 EDT 2006


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 vargaz at gmail.com.

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

--- shadow/78678	2006-06-20 10:45:27.000000000 -0400
+++ shadow/78678.tmp.10696	2006-06-20 10:45:27.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 78678
+Product: Mono: Compilers
+Version: 1.0
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: C#
+AssignedTo: rharinath at novell.com                            
+ReportedBy: vargaz at gmail.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mcs/gmcs can't match a delegate with 'params flag' against a method
+
+This blocks the latest IronPython from compiling on mono.
+
+Testcase:
+
+<<<<<<<<<<<<<<<<<<<<<<<<<
+using System;
+
+public class Tests {
+
+	public delegate void CallTargetWithContextN (object o, params object[] args);
+
+	public static void CallWithContextN (object o, object[] args) {
+	}
+
+	public static void Main () {
+		object o = new CallTargetWithContextN (CallWithContextN);
+	}
+}
+<<<<<<<<<<<<<<<<<<<<<<<<<


More information about the mono-bugs mailing list