[xbuild] More tweaks for portable debug mode
[mono-project.git] / mcs / errors / cs1961-21.cs
blob9620d4c44e14685a045843abf5a02926dfb1eebc
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>.C()'
2 // Line: 8
4 interface A<T>
8 interface B<out T>
10 A<A<T>> C();