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>2004-11-26 18:59:08 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-11-26 18:59:08 +0300
commit4fe5bab4864ad4071d80dcf0db72810aa20a9c77 (patch)
tree1dadb76afb70ac4167258bd808770e1ec444e67b /mcs/errors/cs1721.cs
parent28bb0ee0e88e04e81faee446efbef960ec3ff9b6 (diff)
Rename the error
svn path=/trunk/mcs/; revision=36643
Diffstat (limited to 'mcs/errors/cs1721.cs')
-rw-r--r--mcs/errors/cs1721.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs1721.cs b/mcs/errors/cs1721.cs
new file mode 100644
index 00000000000..454dd0fda73
--- /dev/null
+++ b/mcs/errors/cs1721.cs
@@ -0,0 +1,10 @@
+// cs1721: type in interface list is not a interface, and the class B already has a base class
+//
+class A1 {
+}
+
+class A2 {
+}
+
+class B : A1, A2 {
+}