[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1738.cs
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 12
3
4 class C
5 {
6         static void Foo (int a, string s)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Foo (a : 1,  "out");
13         }
14 }