* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / gtest-174.cs
1 // Compiler options: /r:gtest-174-lib.dll
2 public class B<T> {
3         public static B<T> _N_constant_object = new B<T> ();
4 }
5
6 class M {
7         static void Main () {
8                 A<int> x = A<int>._N_constant_object;
9                 B<int> y = B<int>._N_constant_object;
10         }
11 }