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-9.cs')
-rwxr-xr-xmcs/tests/test-9.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/tests/test-9.cs b/mcs/tests/test-9.cs
deleted file mode 100755
index 4fd35e3714b..00000000000
--- a/mcs/tests/test-9.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-class X {
- static public int Main (string [] args)
- {
- decimal a, b, c, d;
-
- a = 0;
- b = 1;
- c = d = 3;
-
- if (b + b + b != c)
- return 1;
-
- if (a != (b - 1))
- return 2;
-
- if (c != d)
- return 3;
-
- if (!(c == d))
- return 4;
-
- return 0;
- }
-}