Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git] / mcs / errors / cs1961-26.cs
blob178745b92dd8dedc0fed594a62bfdaf2f95ae956
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>(A<T>)'
2 // Line: 8
4 interface A<T>
8 delegate void B<out T> (A<T> a);