2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-33.cs
blob273fb8c5bceb471f049a768decaa2201f5a580aa
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `A<T>.B(out T)'
2 // Line: 5
3 // Compiler options: -langversion:future
5 interface A<in T>
7 void B(out T t);