Merge pull request #4935 from lambdageek/dev-handles-may
[mono.git] / mcs / tests / gtest-638.cs
1 class X<T1, T2, U>
2         where T1 : class, T2
3         where T2 : class
4         where U : A, T1
5 {
6 }
7
8 class A
9 {
10 }
11
12 class F
13 {
14         public static void Main ()
15         {
16         }
17 }