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

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