[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1966-2.cs
1 // CS1966: `C': cannot implement a dynamic interface `I<I<dynamic>>'
2 // Line: 8
3
4 interface I<T>
5 {
6 }
7
8 class C : I<I<dynamic>>
9 {
10 }