[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs1739.cs
blobdee7c9f89ef910a10c4b258ca95e747bd4525189
1 // CS1739: The best overloaded method match for `C.Foo(int, int)' does not contain a parameter named `b'
2 // Line: 12
4 class C
6 static void Foo (int x, int y)
10 public static void Main ()
12 Foo (1, b : 2);