summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1738.cs
blob: dab9a61160b9ecfd2c2d1ce3ce6a45f82b8c16d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1738: Named arguments must appear after the positional arguments
// Line: 12

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