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