[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1961-13.cs
blob0848fed3a8425d8727bef9ce5f65c517de941672
1 // CS1961: The contravariant type parameter `T' must be covariantly valid on `B<T>.A'
2 // Line: 8
4 interface A<out T>
8 interface B<in T>
10 A<T> A { get; }