[Mono-bugs] [Bug 52707][Nor] Changed - Invalid IL in ICSharpCode.SharpZipLib -- makes AOT fail
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 17 Jan 2004 15:41:31 -0500 (EST)
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=52707
--- shadow/52707 2004-01-09 20:51:12.000000000 -0500
+++ shadow/52707.tmp.23118 2004-01-17 15:41:31.000000000 -0500
@@ -70,6 +70,34 @@
6 Errors Verifying ICSharpCode.SharpZipLib.dll
------- Additional Comments From bmaurer@users.sf.net 2004-01-09 20:51 -------
maybe this is related to bug 52427.
+
+------- Additional Comments From miguel@ximian.com 2004-01-17 15:41 -------
+Here is a simple test case:
+
+class x {
+
+ static void Main()
+ {
+ while (true) {
+
+ if (1 == 2) {
+ break;
+ }
+
+ if (1 == 2) {
+ do {
+ } while (true);
+
+ continue;
+ } else {
+ continue;
+ }
+
+ }
+ }
+
+}
+