[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1961-33.cs
blobaac07f8a9776ec3f8ffc117e4db69a8e703bf4c8
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `A<T>.B(out T)'
2 // Line: 5
4 interface A<in T>
6 void B(out T t);