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:
authorMartin Baulig <martin@novell.com>2005-05-20 15:44:02 +0400
committerMartin Baulig <martin@novell.com>2005-05-20 15:44:02 +0400
commitbef2caa45da7893ee692e58f6bb973d5b4eab994 (patch)
tree564089cf5f4444f451d7bac21ccaaa8472a7a78d /mcs/errors/cs0146-2.cs
parent226fcb2c0eabbdb626e0148252f2b7383857c0a1 (diff)
New test.
svn path=/trunk/mcs/; revision=44810
Diffstat (limited to 'mcs/errors/cs0146-2.cs')
-rw-r--r--mcs/errors/cs0146-2.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0146-2.cs b/mcs/errors/cs0146-2.cs
new file mode 100644
index 00000000000..d028bc20e52
--- /dev/null
+++ b/mcs/errors/cs0146-2.cs
@@ -0,0 +1,12 @@
+// cs0146.cs: Circular base class dependency involving 'C' and 'A'
+// Line: 4
+
+class A : B
+{ }
+
+class B : C
+{ }
+
+class C : A
+{ }
+