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>2001-12-11 03:17:09 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-11 03:17:09 +0300
commitf60217decbc00381b7a963f0019ade2991585b46 (patch)
treec1245dec5e141c164d91c16d9fe2707e227260fd /mcs/errors/bug1.cs
parent467708b7f37377666021a0b2c35d304b9ea8297b (diff)
Add bug
svn path=/trunk/mcs/; revision=1552
Diffstat (limited to 'mcs/errors/bug1.cs')
-rwxr-xr-xmcs/errors/bug1.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/bug1.cs b/mcs/errors/bug1.cs
new file mode 100755
index 00000000000..9a4b32401c3
--- /dev/null
+++ b/mcs/errors/bug1.cs
@@ -0,0 +1,12 @@
+interface A {
+ void B ();
+}
+
+interface X {
+ void B ();
+}
+
+
+class B : A, X {
+
+}