2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-260.cs
blob84e770046bc069af60c97708b6f62727c5e90ccf
1 using x;
2 using y;
3 using Test = x.Test;
5 namespace x
7 public class Test
8 { }
11 namespace y
13 public class Test
14 { }
17 namespace b
19 public class a
21 public static void Main()
23 // Test should be an alias to x.Test
24 Test test = new Test();