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