2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-31.cs
blob6b97735309dbe632360f49432ac1f14059278d3b
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<out T> : A<T>