Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1961.cs
1 // CS1961: The contravariant type parameter `T' must be covariantly valid on `A<T>.B()'
2 // Line: 6
3
4 interface A<in T>
5 {
6         T B();
7 }