2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs0529.cs
1 // cs0529: Inherited interface 'C' causes a cycle in the interface hierarchy of 'A'
2 // Line: 10
3
4 interface A : B {
5 }
6
7 interface B : C {
8 }
9
10 interface C : A {
11 }