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-129.cs')
-rwxr-xr-xmcs/tests/test-129.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/tests/test-129.cs b/mcs/tests/test-129.cs
deleted file mode 100755
index 11cf4b70e2c..00000000000
--- a/mcs/tests/test-129.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// Check unary minus.
-//
-using System;
-
-class X {
-
- static int Main ()
- {
- short a = -32768;
- int b = -2147483648;
- long c = -9223372036854775808;
- sbyte d = -128;
-
- return 0;
- }
-}