quote only work on lambda on net_4_0
[mcs.git] / errors / gcs1961-32.cs
blobcf850f579e1f2a668b8c792275dbfc5ae82b9f04
1 // CS1961: The covariant type parameter `T' must be contravariantly valid on `B<T>'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<in T>
9 interface B<out T> : A<T>