Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / tests / test-202.cs
1 using X;
2 namespace X
3 {
4         public class X
5         { }
6 }
7
8 namespace A.B.C
9 {
10         public class D
11         { }
12 }
13
14 class Test
15 {
16         public static int Main ()
17         {
18                 A.B.C.D d = new A.B.C.D ();
19                 X.X x = new X.X ();
20                 return 0;
21         }
22 }