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-108.cs')
-rwxr-xr-xmcs/tests/test-108.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/mcs/tests/test-108.cs b/mcs/tests/test-108.cs
deleted file mode 100755
index 2edc56d9457..00000000000
--- a/mcs/tests/test-108.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-class X {
-
- static int Main ()
- {
- int i = 0;
-
- if (false){
- i = 1;
- return 1;
- }
-
- if (true)
- i = 2;
- else
- i = 3;
-
- if (i != 2)
- return 5;
-
- while (true){
- i++;
- if (i == 10)
- break;
- }
-
- while (false){
- i--;
- return 3;
- }
-
- if (i != 10)
- return 2;
-
- do {
- if (i++ == 20)
- break;
- } while (true);
-
- if (i != 21)
- return 4;
-
- return 0;
- }
-}