[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1961.cs
blob57e48237b261b02967f65e27f6e069f4b5b54b0d
1 // CS1961: The contravariant type parameter `T' must be covariantly valid on `A<T>.B()'
2 // Line: 6
4 interface A<in T>
6 T B();