Merge pull request #4935 from lambdageek/dev-handles-may
[mono.git] / mcs / tests / gtest-035.cs
1 // May use a constructed type as constraint.
2
3 class Test<T>
4 { }
5
6 class Foo<T>
7         where T : Test<T>
8 { }
9
10 class X
11 {
12         public static void Main ()
13         {
14         }
15 }