summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1750.cs
blob: 15b09c384911dc06da2aa68f6eb00dfa17474bb3 (plain)
1
2
3
4
5
6
7
8
9
// CS1750: Optional parameter expression of type `string' cannot be converted to parameter type `int'
// Line: 6

public class C
{
	public C (int a = "a")
	{
	}
}