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