[Mono-bugs] [Bug 59525][Blo] Changed - Invalid IL code IL0037

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 7 Jul 2004 16:47:06 -0400 (EDT)


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

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

--- shadow/59525	2004-06-27 23:41:45.000000000 -0400
+++ shadow/59525.tmp.1723	2004-07-07 16:47:06.000000000 -0400
@@ -1,17 +1,17 @@
 Bug#: 59525
 Product: Mono: Compilers
 Version: unspecified
 OS: unknown
 OS Details: Redhat 8.0
-Status: REOPENED   
+Status: NEW   
 Resolution: 
 Severity: Unknown
 Priority: Blocker
 Component: C#
-AssignedTo: mono-bugs@ximian.com                            
+AssignedTo: martin@ximian.com                            
 ReportedBy: michi@zeroc.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
 Summary: Invalid IL code IL0037
@@ -78,6 +78,25 @@
 
 Michi.
 
 ------- Additional Comments From michi@zeroc.com  2004-06-07 23:44 -------
 PS: Please let me know when you've downloaded the archive so I can
 remove it again.
+
+------- Additional Comments From miguel@ximian.com  2004-07-07 16:47 -------
+A working sample, this is a problem with the throw inside the lock
+
+using System;
+class X {
+public void m () 
+{
+    lock(this)
+    {
+        throw new Exception ();
+    }
+}
+
+static void Main ()
+{
+}
+}
+