[Mono-bugs] [Bug 75925][Maj] Changed - Anon-delegates regression
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Aug 28 17:59:31 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 bmaurer at users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=75925
--- shadow/75925 2005-08-28 17:51:33.000000000 -0400
+++ shadow/75925.tmp.25588 2005-08-28 17:59:30.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 75925
Product: Mono: Compilers
Version: 1.1
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Major
Component: C#
AssignedTo: mono-bugs at ximian.com
ReportedBy: bmaurer at users.sf.net
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
@@ -61,6 +61,30 @@
container, Mono.CSharp.Attributable kind)
in <0x00029> Mono.CSharp.Method:Emit ()
in <0x00625> Mono.CSharp.TypeContainer:EmitType ()
in <0x00215> Mono.CSharp.RootContext:EmitCode ()
in <0x00bf0> Mono.CSharp.Driver:MainDriver (System.String[] args)
in <0x0000f> Mono.CSharp.Driver:Main (System.String[] args)
+
+------- Additional Comments From bmaurer at users.sf.net 2005-08-28 17:59 -------
+Simple test case:
+
+using System;
+using System.Threading;
+
+class X {
+
+ static void Main ()
+ {
+ }
+
+ void Z ()
+ {
+ ThreadPool.QueueUserWorkItem (delegate {
+ Z ();
+
+ ThreadPool.QueueUserWorkItem (delegate {
+ Z ();
+ });
+ });
+ }
+}
More information about the mono-bugs
mailing list