summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-12.cs
blob: 002fe3896f0b96705bd61873f16f5e10726ae7e3 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1644: Feature `optional parameter' cannot be used because it is not part of the C# 2.0 language specification
// Line: 7
// Compiler options: -langversion:ISO-2

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