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/cs0539.cs')
-rwxr-xr-xmcs/errors/cs0539.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/mcs/errors/cs0539.cs b/mcs/errors/cs0539.cs
deleted file mode 100755
index a9bf22fc40f..00000000000
--- a/mcs/errors/cs0539.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-// cs0539.cs: Member in explicit interface declaration is not a member of the interface
-// Line:
-
-interface A {
-}
-
-class X : A {
- void A.B () {}
- static void Main () {}
-}