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-08-05 21:08:07 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-08-05 21:08:07 +0400
commit37dcf16ecb632bea339fcf047ea1023753eba6b6 (patch)
tree0c79ca50a0b8142ce99c172943d3009f396fcb44 /mcs/errors/cs0529.cs
parent08e726c19dd8e715d8e97bc5c90ed3e0086b4e84 (diff)
Add more test cases for the compiler, we rule!!!
svn path=/trunk/mcs/; revision=405
Diffstat (limited to 'mcs/errors/cs0529.cs')
-rw-r--r--mcs/errors/cs0529.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/errors/cs0529.cs b/mcs/errors/cs0529.cs
new file mode 100644
index 00000000000..52e725162d0
--- /dev/null
+++ b/mcs/errors/cs0529.cs
@@ -0,0 +1,7 @@
+// cs0529: Recursive interface definition
+// Line: 3
+interface A : B {
+}
+
+interface B : A {
+}