[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-299.cs
blob951b1621eef2eb1524779897d55fe283ee1e5f06
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 ()
9 q = new B<N.A> ();
10 if (typeof (B<X::A>) != typeof (B<X.A>))
11 throw new Exception ("huh");