[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1961-32.cs
blobb9e0be6f10850ff5d18b6d724fbaa6d0d4072fcb
1 // CS1961: The covariant type parameter `T' must be contravariantly valid on `B<T>'
2 // Line: 8
4 interface A<in T>
8 interface B<out T> : A<T>