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-81.cs')
-rw-r--r--mcs/tests/test-81.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/mcs/tests/test-81.cs b/mcs/tests/test-81.cs
deleted file mode 100644
index 005708bfc86..00000000000
--- a/mcs/tests/test-81.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// Tests if we can invoke static members using the short
-// names
-//
-using System;
-
-namespace N1
-{
- public class A
- {
- int x;
- string s;
-
- void Bar ()
- {
- x = int.Parse ("0");
- s = string.Format("{0}", x);
- }
-
- public static int Main ()
- {
- A a = new A ();
-
- a.Bar ();
-
- if (a.x != 0)
- return 1;
-
- if (a.s != "0")
- return 1;
-
- Console.WriteLine ("Bar set s to " + a.s);
-
- return 0;
- }
- }
-}