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-130.cs')
-rwxr-xr-xmcs/tests/test-130.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/tests/test-130.cs b/mcs/tests/test-130.cs
deleted file mode 100755
index be7b70df86c..00000000000
--- a/mcs/tests/test-130.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// Check casts.
-//
-using System;
-
-class X {
-
- public const short a = 128;
- public const int b = 0xffff;
- public const double c = 123.4;
-
- public const long d = 5;
- // public const int e = 2147483648;
-
- public const byte f = 127;
-
- public const char c1 = (char) 0xffff;
- public const char c2 = (char) 123.4;
- public const char c3 = (char) a;
- public const char c4 = (char) b;
- public const char c5 = (char) c;
-
- public const short s1 = (short) b;
- public const short s2 = (short) c;
-
- static int Main ()
- {
- return 0;
- }
-}