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:
Diffstat (limited to 'mcs/tests/test-140.cs')
-rwxr-xr-xmcs/tests/test-140.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/mcs/tests/test-140.cs b/mcs/tests/test-140.cs
deleted file mode 100755
index 03c9757b16b..00000000000
--- a/mcs/tests/test-140.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// We used to generate incorrect code for breaks in infinite while loops
-//
-using System;
-
-public class BreakTest
-{
- static int ok = 0;
-
- public static void B ()
- {
- ok++;
- while (true)
- {
- ok++;
- break;
- }
- ok++;
- }
-
- public static int Main()
- {
- B ();
- if (ok != 3)
- return 1;
- return 0;
- }
-}