for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs1961-6.cs
blobe1aefb7db8ddd064d6b3561b8bc42957fe1005e2
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>.C()'
2 // Line: 8
4 interface A<T>
8 interface B<in T>
10 A<A<T>> C();