[Mono-bugs] [Bug 82277][Maj] New - Block.AssignableSlots regression in r83164
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Aug 1 11:23:16 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 martin at ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=82277
--- shadow/82277 2007-08-01 11:23:16.000000000 -0400
+++ shadow/82277.tmp.918 2007-08-01 11:23:16.000000000 -0400
@@ -0,0 +1,56 @@
+Bug#: 82277
+Product: Mono: Compilers
+Version: 1.0
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: C#
+AssignedTo: rharinath at novell.com
+ReportedBy: martin at ximian.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Block.AssignableSlots regression in r83164
+
+We have a regression in r83164 - the following test case now crashes in
+Block.AssignableSlots:
+
+=======
+using System;
+
+public delegate object TargetAccessDelegate (object user_data);
+
+public class SingleSteppingEngine
+{
+ bool engine_stopped;
+
+ object SendCommand (TargetAccessDelegate target)
+ {
+ return target (null);
+ }
+
+ public void Detach ()
+ {
+ SendCommand (delegate {
+ if (!engine_stopped) {
+ throw new InvalidOperationException ();
+ }
+
+ return null;
+ });
+ }
+}
+
+class X
+{
+ static void Main ()
+ { }
+}
+============
+
+This is from the debugger and makes it impossible to compile the debugger
+with the latest mcs.
More information about the mono-bugs
mailing list