TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs1961-36.cs
blob3ca4f5f49764c9422d37b268ca622b2530cc26ca
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `A<T>.B(out T)'
2 // Line: 6
4 interface A<out T>
6 void B(out T t);