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-80.cs')
-rwxr-xr-xmcs/tests/test-80.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/mcs/tests/test-80.cs b/mcs/tests/test-80.cs
deleted file mode 100755
index ec2270b1c40..00000000000
--- a/mcs/tests/test-80.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// This test is used to check that we can actually use implementations
-// provided in our parent to interfaces declared afterwards.
-//
-
-using System;
-
-public interface A {
- int Add (int a, int b);
-}
-
-public class X {
- public int Add (int a, int b)
- {
- return a + b;
- }
-}
-
-class Y : X, A {
-
- static int Main ()
- {
- Y y = new Y ();
-
- if (y.Add (1, 1) != 2)
- return 1;
-
- Console.WriteLine ("parent interface implementation test passes");
- return 0;
- }
-
-}