2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-035.cs
blob06f1a69081a4229f7797700e8554ed4a0492d337
1 // May use a constructed type as constraint.
3 class Test<T>
4 { }
6 class Foo<T>
7 where T : Test<T>
8 { }
10 class X
12 static void Main ()