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-110.cs')
-rwxr-xr-xmcs/tests/test-110.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/mcs/tests/test-110.cs b/mcs/tests/test-110.cs
deleted file mode 100755
index b8900991ed3..00000000000
--- a/mcs/tests/test-110.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Special test case for the Compound Assignment for the
-// second case (not the obvious one, but the one with
-// implicit casts)
-
-using System;
-
-namespace test
-{
- public class test
- {
- static int test_method(int vv)
- {
- byte b = 45;
-
- // The cast below will force the expression into being
- // a byte, and we basically make an explicit cast from
- // the return of "<<" from int to byte (the right-side type
- // of the compound assignemtn)
- b |= (byte)(vv << 1);
-
- return b;
- }
-
- public static int Main ()
- {
- if (test_method (1) != 47)
- return 1;
- return 0;
- }
- }
-}