[corlib] Add a special method for XI so the linker does not always have to generate it.
[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);