This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0529.cs
1 // cs0529: Recursive interface definition
2 // Line: 3
3 interface A : B {
4 }
5
6 interface B : A {
7 }