[Mono-bugs] [Bug 72544][Wis] New - mcs crashes with Mono.CSharp.InternalErrorException
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 12 Feb 2005 20:33:19 -0500 (EST)
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 grompf@sublimeintervention.com.
http://bugzilla.ximian.com/show_bug.cgi?id=72544
--- shadow/72544 2005-02-12 20:33:19.000000000 -0500
+++ shadow/72544.tmp.20037 2005-02-12 20:33:19.000000000 -0500
@@ -0,0 +1,33 @@
+Bug#: 72544
+Product: Mono: Compilers
+Version: 1.1
+OS:
+OS Details: ubuntu/ppc hoary
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: grompf@sublimeintervention.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: mcs crashes with Mono.CSharp.InternalErrorException
+
+using System;
+using System.Runtime.InteropServices;
+
+class T {
+
+ [DllImport ("blah")]
+ extern static int Blah (out int g);
+
+ static int Main (string [] args) {
+ IntPtr g;
+
+ Blah (out g);
+ return (int) g;
+ }
+}