summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-40.cs
blob: e31c1defedd703e88709ead7451655fc06334e46 (plain)
1
2
3
4
5
6
7
// CS1961: The contravariant type parameter `T' must be invariantly valid on `InterfaceContravariat<T>.Prop'
// Line: 4

interface InterfaceContravariat<in T>
{
	T Prop { set; get; }
}