* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / gtest-034.cs
1 class Foo<T>
2 { }
3
4 class Stack<T>
5 { }
6
7 //
8 // We may use a constructed type `Stack<T>' instead of
9 // just a type parameter.
10 //
11
12 class Bar<T> : Foo<Stack<T>>
13 { }
14
15 class X
16 {
17         static void Main ()
18         { }
19 }