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-11.cs')
-rw-r--r--mcs/tests/test-11.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/mcs/tests/test-11.cs b/mcs/tests/test-11.cs
deleted file mode 100644
index c122201d472..00000000000
--- a/mcs/tests/test-11.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using System.IO;
-
-public class Test {
-
- public static int boxtest ()
- {
- int i = 123;
- object o = i;
-// int j = (int) o;
-
-// if (i != j)
-// return 1;
-
- return 0;
- }
-
- public static int Main () {
- if (boxtest () != 0)
- return 1;
-
-
- return 0;
- }
-}
-
-