2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-034.cs
blob7df2d55f3d00026d2e4bf4f52b2f55920c7e9241
1 class Foo<T>
2 { }
4 class Stack<T>
5 { }
7 //
8 // We may use a constructed type `Stack<T>' instead of
9 // just a type parameter.
12 class Bar<T> : Foo<Stack<T>>
13 { }
15 class X
17 static void Main ()
18 { }