Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1750.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9aa7f2387a47149dd64a34e10f3811129423427e (plain)
1
2
3
4
5
6
7
8
9
10
// CS1750: Optional parameter value `a' cannot be converted to parameter type `int'
// Line: 6
// Compiler options: -langversion:future

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