Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2003-04-05 23:10:02 +0400
committerMartin Baulig <martin@novell.com>2003-04-05 23:10:02 +0400
commit64655bb5ff8963dc61d8594bd2bfe584c6efbeb3 (patch)
tree97b1d9d0b90c04c55e6abf1af3b0d7ee20ba5cc5 /mcs/tests/test-189.cs
parent62012c26d04a1aee48974a98810a7c4c4f760f31 (diff)
2003-04-05 Martin Baulig <martin@ximian.com>
* test-189.cs: New test for bug #40670. svn path=/trunk/mcs/; revision=13204
Diffstat (limited to 'mcs/tests/test-189.cs')
-rw-r--r--mcs/tests/test-189.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-189.cs b/mcs/tests/test-189.cs
new file mode 100644
index 00000000000..79fdd4158d3
--- /dev/null
+++ b/mcs/tests/test-189.cs
@@ -0,0 +1,16 @@
+using System;
+
+class X
+{
+ static int Main ()
+ {
+ while (true) {
+ break;
+
+ while (true)
+ Console.WriteLine ("Test");
+ }
+
+ return 0;
+ }
+}