summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1750-2.cs
blob: 414a08628f86e0a2cedfd5c15de89181f9611c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1750: Optional parameter expression of type `S' cannot be converted to parameter type `C'
// Line: 10

struct S
{
}

class C
{
	public static void Test (C c = new S ())
	{
	}
}