summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1066-3.cs
blob: 86fb46944f2d4167052724e1ed833d4075001dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS1066: The default value specified for optional parameter `x' will never be used
// Line: 12
// Compiler options: -warnaserror

interface I
{
	void Method (int i);
}

class C : I
{
	void I.Method (int x = 9)
	{
	}
}