[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0529-2.cs
1 // CS0529: Inherited interface `IB' causes a cycle in the interface hierarchy of `IC'
2 // Line: 12
3
4 interface IC : IB
5 {
6 }
7
8 partial interface IB
9 {
10 }
11
12 partial interface IB : IC
13 {
14 }
15