Add more tests for the compiler
[mono.git] / mcs / tests / c1.cs
diff --git a/mcs/tests/c1.cs b/mcs/tests/c1.cs
new file mode 100755 (executable)
index 0000000..8b81c04
--- /dev/null
@@ -0,0 +1,7 @@
+// cs0146.cs: circular class definition
+// Line: 6
+class A : B {
+}
+
+class B : A {
+}