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/errors/bug5.cs')
-rwxr-xr-xmcs/errors/bug5.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/errors/bug5.cs b/mcs/errors/bug5.cs
deleted file mode 100755
index 03fce159750..00000000000
--- a/mcs/errors/bug5.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// fixed
-//
-interface I {
- void a ();
-}
-
-abstract class X : I {
- public abstract void a ();
-}
-
-class Y : X {
- override public void a () {
- System.Console.WriteLine ("Hello!");
- return;
- }
-
- static void Main () {
- Y y = new Y ();
-
- ((I) y ).a ();
- }
-}