"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1961-20.cs
blob407b5205b822436a7deb6000ca84b9ee56554321
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>.C()'
2 // Line: 8
4 interface A<T>
8 interface B<out T>
10 A<T> C();