[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[mono.git] / mcs / errors / cs1961-34.cs
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `A<T>.B(ref T)'
2 // Line: 4
3
4 interface A<in T>
5 {
6         void B(ref T t);
7 }