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