Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-214.cs
1 using T1 = N1.C1;
2
3 namespace N2
4 {
5         class Test : T1
6         {
7                 public static int Main()
8                 {
9                         // Compilation-only test.
10                         Foo ();
11                         return 0;
12                 }
13         }
14 }
15
16 namespace N1
17 {
18         public class C1
19         {        
20                 public static void Foo ()
21                 { }
22         }
23 }