Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs1961-23.cs
bloba828d310c441b9d436715e8ba0c22e7d06d0b207
1 // CS1923: The covariant type parameter `T' must be invariantly valid on `B<T>.C(A<A<T>>)'
2 // Line: 8
4 interface A<T>
8 interface B<out T>
10 void C(A<A<T>> a);