eol
[mcs.git] / tests / gtest-055.cs
blob586196d45d8712394c5bf763da914d53b75f3885
1 // Using constructed types in a namespace alias.
3 namespace N1
5 class A<T>
7 public class B { }
9 public class C<U> { }
12 class C { }
15 namespace N2
17 using Y = N1.A<int>;
19 class X
21 static void Main ()
23 Y y = new Y ();
24 Y.B b = new Y.B ();
25 Y.C<long> c = new Y.C<long> ();