[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1961-33.cs
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `A<T>.B(out T)'
2 // Line: 5
3
4 interface A<in T>
5 {
6         void B(out T t);
7 }