[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1961-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;