Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs1961-13.cs
blob457f795a405a0fcf5e6521e0c263b66b60f8b76d
1 // CS1961: The contravariant type parameter `T' must be covariantly valid on `B<T>.A'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<out T>
9 interface B<in T>
11 A<T> A { get; }