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-68.cs')
-rwxr-xr-xmcs/tests/test-68.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/tests/test-68.cs b/mcs/tests/test-68.cs
deleted file mode 100755
index df49dbc8786..00000000000
--- a/mcs/tests/test-68.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// Tests invocation of reference type functions with value type arguments
-//
-using System;
-enum A {
- Hello
-}
-
-class X {
-
- static int Main ()
- {
- if ("Hello" != A.Hello.ToString ())
- return 1;
-
- Console.WriteLine ("value is: " + (5.ToString ()));
- if (5.ToString () != "5")
- return 2;
-
- return 0;
- }
-}
-