[Mono-bugs] [Bug 43209][Wis] Changed - Allow simple return statements inside iterators
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Wed, 21 May 2003 19:40:26 -0400 (EDT)
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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=43209
--- shadow/43209 Sat May 17 11:35:28 2003
+++ shadow/43209.tmp.2476 Wed May 21 19:40:26 2003
@@ -1,13 +1,13 @@
Bug#: 43209
Product: Mono/MCS
Version: unspecified
OS: All
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Wishlist
Component: Misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: bmaurer@users.sf.net
QAContact: mono-bugs@ximian.com
@@ -35,6 +35,12 @@
if (!itr.MoveNext ()) return;
}
#else
#error Needs Version 2 features.
#endif
}
+
+------- Additional Comments From miguel@ximian.com 2003-05-21 19:40 -------
+You either want to break there (so you continue processing), or you
+want to finish "yield break".
+
+