2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0529.cs
blob03bc988d5b33d0d6a5913a0f3bb20748b1b2eaa8
1 // cs0529.cs: Inherited interface `A' causes a cycle in the interface hierarchy of `C'
2 // Line: 10
4 interface A : B {
7 interface B : C {
10 interface C : A {