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