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/bug1.cs')
-rwxr-xr-xmcs/errors/bug1.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/errors/bug1.cs b/mcs/errors/bug1.cs
deleted file mode 100755
index 934f0f9bce2..00000000000
--- a/mcs/errors/bug1.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// FIXED
-//
-interface A {
- void B ();
-}
-
-interface X {
- void B ();
-}
-
-
-class B : A, X {
- void X.B () {}
- void A.B () {}
-
-}