[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs1961-17.cs
blob1d4dbfe95447f7b705ca42eb0f3a28ded7dfef66
1 // CS1961: The contravariant type parameter `T' must be covariantly valid on `B<T>'
2 // Line: 8
4 interface A<out T>
8 interface B<in T> : A<T>