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-15.cs')
-rwxr-xr-xmcs/tests/test-15.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/tests/test-15.cs b/mcs/tests/test-15.cs
deleted file mode 100755
index c199bc13bcb..00000000000
--- a/mcs/tests/test-15.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-
-interface Iface {
- void A ();
-}
-
-class Implementor : Iface {
- public void A () {}
-}
-
-class Run {
-
- static int Main ()
- {
- Iface iface;
- Implementor i = new Implementor ();
-
- iface = i;
-
- return 0;
- }
-}