[Mono-bugs] [Bug 76597][Wis] Changed - anonymous method seems to be
public
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Mar 12 08:57:21 EST 2006
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 atsushi at ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=76597
--- shadow/76597 2005-10-30 10:26:27.000000000 -0500
+++ shadow/76597.tmp.18143 2006-03-12 08:57:21.000000000 -0500
@@ -1,14 +1,14 @@
Bug#: 76597
Product: Mono: Compilers
Version: 1.1
-OS:
+OS: unknown
OS Details: Panther
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Wishlist
Component: C#
AssignedTo: rharinath at novell.com
ReportedBy: ats at cs.rit.edu
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
@@ -45,6 +45,30 @@
How often does this happen?
always
Additional Information:
the other files can be found relative to the link given above.
+
+------- Additional Comments From atsushi at ximian.com 2006-03-12 08:57 -------
+I came across the same problem (I think). Here is much easier test to
+reproduce:
+
+using System;
+using System.Collections.Generic;
+
+public class Test
+{
+ class Foo
+ {
+ }
+
+ List<Foo> list;
+
+ public void Bar (bool v)
+ {
+ list.RemoveAll (delegate (Foo val) {
+ return v;
+ });
+ }
+}
+
More information about the mono-bugs
mailing list