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

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