[Mono-bugs] [Bug 77061][Maj] Changed - Mono compiled code fails
under VS 2005
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Dec 22 13:30:56 EST 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 vargaz at gmail.com.
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: rharinath at novell.com
ReportedBy: perryresearch at zoot.net.nz
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
@@ -40,6 +40,24 @@
I left this as Major, but to me lack of cross-platform compatibility is fundamental...
------- Additional Comments From perryresearch at zoot.net.nz 2005-12-21 16:56 -------
Created an attachment (id=16241)
Tar gzip of sources and sample input file
+
+------- Additional Comments From vargaz at gmail.com 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;
+ }
+ }
+}
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
More information about the mono-bugs
mailing list