cleol
[mcs.git] / errors / cs1738.cs
blobe2a5ab579003ee132c3b72f2fd1558b8498dd6bf
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 12
3 // Compiler options: -langversion:future
5 class C
7 static void Foo (int a, string s)
11 public static void Main ()
13 Foo (a : 1, "out");