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-05-19 01:14:45 +0400
committerMartin Baulig <martin@novell.com>2003-05-19 01:14:45 +0400
commit153d55acac6b8d38c2a4c876358d7f21a27ed463 (patch)
treeb0e477a7907015f83758b9d14a474a3c356747d4 /mcs/tests/test-189.cs
parent416ab32ade3bd6a2ce47e3ec883aa8d09706cb97 (diff)
2003-05-18 Martin Baulig <martin@ximian.com>
* test-154.cs: Added the contents of test-189.cs as a new testcase to this test. * test-189.cs: Removed, let's keep the flow analysis tests in one single test file. svn path=/trunk/mcs/; revision=14674
Diffstat (limited to 'mcs/tests/test-189.cs')
-rw-r--r--mcs/tests/test-189.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/tests/test-189.cs b/mcs/tests/test-189.cs
deleted file mode 100644
index 79fdd4158d3..00000000000
--- a/mcs/tests/test-189.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-
-class X
-{
- static int Main ()
- {
- while (true) {
- break;
-
- while (true)
- Console.WriteLine ("Test");
- }
-
- return 0;
- }
-}