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