[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0121-25.cs
blob46ce81586e7d46313c828299baa5af94f25a4fe5
1 // CS0121: The call is ambiguous between the following methods or properties: `A.B.X.Test(int)' and `A.C.X.Test(int)'
2 // Line: 31
4 using static A.B.X;
5 using static A.C.X;
7 namespace A.B
9 static class X
11 public static void Test (int o)
17 namespace A.C
19 static class X
21 public static int Test (int o)
27 class M
29 public static void Main ()
31 Test (0);