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