[Mono-bugs] [Bug 75917][Nor] New - Passing generic parameter via
reflection crashes mono
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sat Aug 27 07:33:13 EDT 2005
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 kiess at h3c.de.
http://bugzilla.ximian.com/show_bug.cgi?id=75917
--- shadow/75917 2005-08-27 07:33:13.000000000 -0400
+++ shadow/75917.tmp.677 2005-08-27 07:33:13.000000000 -0400
@@ -0,0 +1,52 @@
+Bug#: 75917
+Product: Mono: Runtime
+Version: 1.0
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: kiess at h3c.de
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Passing generic parameter via reflection crashes mono
+
+Description of Problem: Passing a generic parameter via reflection crashes
+mono.
+
+
+Steps to reproduce the problem:
+1.
+cat > test.cs << EOF
+using System.Collections.Generic;
+
+public class M {
+ public static void f(List<int> l) {}
+
+ public static void Main() {
+ typeof(M).GetMethod("f").Invoke(null, new object[] { new List<int>() });
+ }
+}
+EOF
+2. gmcs test.cs
+3. mono test.exe
+
+Actual Results:
+
+** ERROR **: type 0x15 not handled in ves_icall_InternalInvoke
+aborting...
+
+
+Expected Results:
+No output.
+
+How often does this happen?
+Always
+
+Additional Information:
+I'm using mono svn r48902
More information about the mono-bugs
mailing list