Merge pull request #463 from strawd/concurrent-requests
[mono.git] / mcs / errors / cs0121-25.cs
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
3
4 using static A.B.X;
5 using static A.C.X;
6
7 namespace A.B
8 {
9         static class X
10         {
11                 public static void Test (int o)
12                 {
13                 }
14         }
15 }
16
17 namespace A.C
18 {
19         static class X
20         {
21                 public static int Test (int o)
22                 {
23                 }
24         }
25 }
26
27 class M
28 {
29         public static void Main ()
30         {
31                 Test (0);
32         }
33 }