Bump API snapshot submodule
[mono.git] / mcs / errors / cs0104-5.cs
1 // CS0104: `N' is an ambiguous reference between `C.N' and `A.T.N'
2 // Line: 32
3
4 namespace A
5 {
6         public class T
7         {
8                 public class N
9                 {
10
11                 }
12         }
13 }
14
15 namespace C
16 {
17         struct N
18         {
19
20         }
21 }
22
23 namespace B
24 {
25         using static A.T;
26         using C;
27
28         static class Program
29         {
30                 static void Main ()
31                 {
32                         var u = new N ();
33                 }
34         }
35 }