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:
authorPaolo Molaro <lupus@oddwiz.org>2002-06-20 16:12:07 +0400
committerPaolo Molaro <lupus@oddwiz.org>2002-06-20 16:12:07 +0400
commit6e9c5492906ea465e7d6a55555f98df89de73288 (patch)
treeed9108d9a0fa5e0f6e7b49b477fdc72a3fdd79e3 /mcs/errors/cs0528.cs
parent78abb8b217c1e1d01b64acbae4120a652f8704cf (diff)
Test error case.
svn path=/trunk/mcs/; revision=5365
Diffstat (limited to 'mcs/errors/cs0528.cs')
-rwxr-xr-xmcs/errors/cs0528.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0528.cs b/mcs/errors/cs0528.cs
new file mode 100755
index 00000000000..84b1d06cef0
--- /dev/null
+++ b/mcs/errors/cs0528.cs
@@ -0,0 +1,10 @@
+// cs0528: `A' is already listed in interface list
+// Line: 6
+interface A {
+ void stuff ();
+}
+class C: A, A {
+ public void stuff () {}
+ static void Main() {}
+}
+