summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-17.cs
blob: 1d4dbfe95447f7b705ca42eb0f3a28ded7dfef66 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1961: The contravariant type parameter `T' must be covariantly valid on `B<T>'
// Line: 8

interface A<out T>
{
}

interface B<in T> : A<T>
{
}