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