eol
[mcs.git] / tests / test-202.cs
blob3efb5fde6eca8e79ca8a9824ea022f0f494c606f
1 using X;
2 namespace X
4 public class X
5 { }
8 namespace A.B.C
10 public class D
11 { }
14 class Test
16 public static int Main ()
18 A.B.C.D d = new A.B.C.D ();
19 X.X x = new X.X ();
20 return 0;