[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1961-11.cs
bloba3a4734f6054c30ec63754484898434d220da62c
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>(A<T>)'
2 // Line: 8
4 interface A<T>
8 delegate void B<in T> (A<T> a);