Allow passing null to JsonArray.Add()
[mono.git] / mcs / tests / test-260.cs
1 using x;
2 using y;
3 using Test = x.Test;
4
5 namespace x
6 {
7         public class Test
8         { }
9 }
10
11 namespace y
12 {
13         public class Test
14         { }
15 }
16
17 namespace b
18 {
19         public class a
20         {
21                 public static void Main()
22                 {
23                         // Test should be an alias to x.Test
24                         Test test = new Test();
25                 }
26         }
27 }