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=77061

--- shadow/77061        2005-12-21 16:56:35.000000000 -0500
+++ shadow/77061.tmp.17214      2005-12-22 13:30:56.000000000 -0500
@@ -2,13 +2,13 @@
 Product: Mono: Compilers
 Version: 1.1
 OS: other
 OS Details: Fedora Core 4 & Debian
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Major
 Component: C#
 AssignedTo: [EMAIL PROTECTED]                            
 ReportedBy: [EMAIL PROTECTED]               
 QAContact: [EMAIL PROTECTED]
 TargetMilestone: ---
@@ -40,6 +40,24 @@
 I left this as Major, but to me lack of cross-platform compatibility is 
fundamental...
 
 ------- Additional Comments From [EMAIL PROTECTED]  2005-12-21 16:56 -------
 Created an attachment (id=16241)
 Tar gzip of sources and sample input file
 
+
+------- Additional Comments From [EMAIL PROTECTED]  2005-12-22 13:30 -------
+Here is a reduced testcase:
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+using System;
+using System.Collections.Generic;
+
+public class Tree<T> {
+    class Node
+    { public Node Left;
+
+      // Yield based enumerator
+      public IEnumerator<T> GetEnumerator()
+      { foreach(T item in Left) yield return item;
+      }
+    }
+}
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to