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-8.cs')
-rw-r--r--mcs/tests/test-8.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/tests/test-8.cs b/mcs/tests/test-8.cs
deleted file mode 100644
index 5de9804f341..00000000000
--- a/mcs/tests/test-8.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-class X {
- static public int Main (string [] args)
- {
- int a, b, c, d;
-
- a = b = 10;
- c = d = 14;
-
- if ((a + b) != 20)
- return 1;
- if ((a + d) != 24)
- return 2;
- if ((c + d) != 28)
- return 3;
- if ((b + c) != 24)
- return 4;
-
- if (a++ != 10)
- return 5;
- if (++a != 12)
- return 6;
- if (b-- != 10)
- return 7;
- if (--b != 8)
- return 8;
-
- return 0;
- }
-}