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-13.cs')
-rw-r--r--mcs/tests/test-13.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/tests/test-13.cs b/mcs/tests/test-13.cs
deleted file mode 100644
index f921ae55728..00000000000
--- a/mcs/tests/test-13.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-
-class Foo {
-
- public bool MyMethod ()
- {
- Console.WriteLine ("Base class method !");
- return true;
- }
-}
-
-class Blah : Foo {
-
- public static int Main ()
- {
- Blah k = new Blah ();
-
- Foo i = k;
-
- if (i.MyMethod ())
- return 0;
- else
- return 1;
-
-
- }
-
-}
-
-
-