New tests.
[mono.git] / mcs / tests / test-751.cs
1 using SomeOtherNS;
2 using LocalNS;
3 using OneMoreNS;
4
5 namespace SomeOtherNS.Compiler
6 {
7 }
8
9 namespace OneMoreNS.Compiler
10 {
11 }
12
13 namespace LocalNS
14 {
15         public class Compiler
16         {
17         }
18 }
19
20 namespace System.Local
21 {
22         class M
23         {
24                 public static void Main ()
25                 {
26                         Compiler c = new LocalNS.Compiler ();
27                 }
28         }
29 }