Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1740.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
	}
}