[interp] run regression with all combinations of available optimizations (#17644)
[mono-project.git] / mcs / errors / cs0121-13.cs
blob0d33c836a705c16da2f765f470a0b699b4c01c9b
1 // CS0121: The call is ambiguous between the following methods or properties: `C.Foo(int, long, params string[])' and `C.Foo(long, int, params string[])'
2 // Line: 9
4 class C
6 public static void Main ()
8 var d = new C ();
9 d.Foo (b: 1, x: "", a : 2);
12 public void Foo (int a, long b, params string[] x)
16 public void Foo (long b, int a, params string[] x)