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-29.cs')
-rw-r--r--mcs/tests/test-29.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/mcs/tests/test-29.cs b/mcs/tests/test-29.cs
deleted file mode 100644
index 6183126d277..00000000000
--- a/mcs/tests/test-29.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// Versioning, should choose Derived.Add (1)
-//
-using System;
-
-class Base {
- public int val;
-
- public void Add (int x)
- {
- Console.WriteLine ("Incorrect method called");
-
- val = 1;
- }
-}
-
-class Derived : Base {
- public void Add (double x)
- {
- Console.WriteLine ("Calling the derived class with double! Excellent!");
- val = 2;
- }
-}
-
-class Demo {
-
- static int Main ()
- {
- Derived d = new Derived ();
-
- d.Add (1);
- if (d.val == 1)
- return 1;
-
- if (d.val == 2)
- return 0;
- return 2;
-
- }
-}