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

class C
{
	public static implicit operator C (int i = 8)
	{
		return null;
	}
}