Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-named-06.cs
1 class C
2 {
3         public static int Main ()
4         {
5                 var d = new C ();
6                 if (d.Foo (x: 1, y : 2) != 3)
7                         return 1;
8                 
9                 return 0;
10         }
11
12         public int Foo (int x, long y, string a = "a")
13         {
14                 return 1;
15         }
16
17         public int Foo (int x, long y, params string[] args)
18         {
19                 return 2;
20         }
21
22         public int Foo (long y, int x)
23         {
24                 return 3;
25         }
26 }