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

interface A<T>
{
}

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