Merge pull request #4202 from marek-safar/compression
[mono-project.git] / mcs / errors / cs1961-25.cs
blob89b753f5dd55e2fb76cf5fb230f2494117ecb58e
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>()'
2 // Line: 8
4 interface A<T>
8 delegate A<A<T>> B<out T> ();