[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0104-5.cs
blob295e443f912a8b8f3ede467cb2a38c45aacb9f47
1 // CS0104: `N' is an ambiguous reference between `C.N' and `A.T.N'
2 // Line: 32
4 namespace A
6 public class T
8 public class N
15 namespace C
17 struct N
23 namespace B
25 using static A.T;
26 using C;
28 static class Program
30 static void Main ()
32 var u = new N ();