2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-21.cs
blob8039575d2564f13808c2e24a266bcef15023e8b8
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>.C()'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<out T>
11 A<A<T>> C();