2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs1961-39.cs
1 // CS1961: The covariant type parameter `V' must be contravariantly valid on `Foo<T>(T)'
2 // Line: 6
3
4 interface I<out V>
5 {
6         void Foo<T> (T t) where T : V;
7 }