2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-299.cs
blobfbaa9c4f03b149a915f829c92cde68778d70b8a7
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 static void Main ()
9 q = new B<N.A> ();
10 if (typeof (B<X::A>) != typeof (B<X.A>))
11 throw new Exception ("huh");