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