2003-01-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[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 }