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

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