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

cs1738.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2a5ab579003ee132c3b72f2fd1558b8498dd6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS1738: Named arguments must appear after the positional arguments
// Line: 12
// Compiler options: -langversion:future

class C
{
	static void Foo (int a, string s)
	{
	}
	
	public static void Main ()
	{
		Foo (a : 1,  "out");
	}
}