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:
authorMiguel de Icaza <miguel@gnome.org>2002-06-22 01:41:42 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-06-22 01:41:42 +0400
commit58aa2caa03651b8cc3d21a28894972939b1f1d51 (patch)
treeca67985b825eb3d75fa96e4804539957593e317c /mcs/errors/cs0539.cs
parent9cb1c53fa7a5e330561ce549a49c4fa5b5bb37a4 (diff)
New errors handled
svn path=/trunk/mcs/; revision=5405
Diffstat (limited to 'mcs/errors/cs0539.cs')
-rwxr-xr-xmcs/errors/cs0539.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0539.cs b/mcs/errors/cs0539.cs
new file mode 100755
index 00000000000..a9bf22fc40f
--- /dev/null
+++ b/mcs/errors/cs0539.cs
@@ -0,0 +1,10 @@
+// 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 () {}
+}