DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs1961-31.cs
12345678910
// CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>' // Line: 8 interface A<T> { } interface B<out T> : A<T> { }