summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1744-2.cs
blob: ec146be77111aa8fa2cba9a15909ae1b6f246ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
// Line: 13

static class C
{
	public static int Test (this int a, int b)
	{
		return a * 3 + b;
	}
	
	public static void Main ()
	{
		1.Test (a : 2);
	}
}