summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-37.cs
blob: e048a02089429945ac588118178c851958902d3a (plain)
1
2
3
4
5
6
7
// CS1961: The covariant type parameter `T' must be invariantly valid on `A<T>.B(ref T)'
// Line: 4

interface A<out T>
{
	void B(ref T t);
}