codeowners update
[mono.git] / mcs / tests / gtest-299.cs
1 using System;
2 using X = N;
3 namespace N { class A {} }
4 class B<T> { }
5 class Test {
6         static public B<X::A> q;
7         public static void Main ()
8         {
9                 q = new B<N.A> ();
10                 if (typeof (B<X::A>) != typeof (B<X.A>))
11                         throw new Exception ("huh");
12         }
13 }