[Mono-bugs] [Bug 82363][Nor] New - Crash on anonymous + array creation operation.

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Tue Aug 7 20:25:44 EDT 2007


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 at ximian.com.

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

--- shadow/82363	2007-08-07 20:25:44.000000000 -0400
+++ shadow/82363.tmp.22539	2007-08-07 20:25:44.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 82363
+Product: Mono: Compilers
+Version: 1.0
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: C#
+AssignedTo: rharinath at novell.com                            
+ReportedBy: miguel at ximian.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Crash on anonymous + array creation operation.
+
+This is a simplified case from IronPython that is crashing on trunk:
+
+using System;
+using System.Reflection;
+
+class X {
+        delegate object test (MethodInfo x);
+
+        static void Main ()
+        {
+                DoCall (delegate(MethodInfo from) {
+                    return from.Invoke (null, new object[] { from });
+                });
+        }
+
+        static void DoCall (test t)
+        {
+        }
+}


More information about the mono-bugs mailing list