Author: martin
Date: 2005-05-02 10:02:53 -0400 (Mon, 02 May 2005)
New Revision: 43884

Modified:
   trunk/mcs/tests/test-154.cs
Log:
Added a testcase for #74529 where we must not report an error.


Modified: trunk/mcs/tests/test-154.cs
===================================================================
--- trunk/mcs/tests/test-154.cs 2005-05-02 14:01:58 UTC (rev 43883)
+++ trunk/mcs/tests/test-154.cs 2005-05-02 14:02:53 UTC (rev 43884)
@@ -605,4 +605,17 @@
                        break;
                }
        }
+
+       static int test40 (int stop)
+       {
+               int service;
+
+               int pos = 0;
+               do {
+                       service = 1;
+                       break;
+               } while (pos < stop);
+
+               return service;
+       }
 }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to