summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1745-2.cs
blob: 1a700aee93e40719b5a0e11555f9a562927dc445 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1745: Cannot specify `System.Runtime.InteropServices.DefaultParameterValue' attribute on optional parameter `u'
// Line: 8

using System.Runtime.InteropServices;

public class C
{
	public static void Test ([DefaultParameterValue (1)] int u = 2)
	{
	}
}