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