Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / test-named-06.cs
blob773d3690f266abeafb3d0b9c687c21914ab792ab
1 class C
3 public static int Main ()
5 var d = new C ();
6 if (d.Foo (x: 1, y : 2) != 3)
7 return 1;
9 return 0;
12 public int Foo (int x, long y, string a = "a")
14 return 1;
17 public int Foo (int x, long y, params string[] args)
19 return 2;
22 public int Foo (long y, int x)
24 return 3;