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 [EMAIL PROTECTED] 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: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +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. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
