[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0121-26.cs
blobe0c76a5e724889d158b7bff09f72b667ef56614a
1 // CS0121: The call is ambiguous between the following methods or properties: `A.B.X.Test(this int)' and `A.C.X.Test(this int)'
2 // Line: 37
4 using System;
6 namespace A.B
8 static class X
10 public static int Test (this int o)
12 return 1;
17 namespace A.C
19 static class X
21 public static int Test (this int o)
23 return 2;
28 namespace C
30 using A.B;
31 using static A.C.X;
33 class M
35 public static int Main ()
37 if (1.Test () != 1)
38 return 1;
40 return 0;