DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs1961-25.cs
12345678
// CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>()' // Line: 8 interface A<T> { } delegate A<A<T>> B<out T> ();