summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1740.cs
blob: 107ac501b82cc355c64cc0779d126bc41690556d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1738: Named argument `a' specified multiple times
// Line: 12

class C
{
	static void Foo (int a)
	{
	}
	
	public static void Main ()
	{
		Foo (a : 1, a : 2);
	}
}