2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-39.cs
blob3938d68355bebbfc5eadbffa9e622bd93733d1a1
1 // CS1961: The covariant type parameter `V' must be contravariantly valid on `I<V>.Foo<T>(T)'
2 // Line: 6
4 interface I<out V>
6 void Foo<T> (T t) where T : V;