Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / gtest-102.cs
1 using System;
2
3 class A<T>
4         where T: IComparable
5 {
6 }
7
8 class B<U,V>
9         where U: IComparable
10         where V: A<U>
11 {
12 }
13
14 class Driver
15 {
16         public static void Main ()
17         {
18                 A<int> a_int;
19                 B<int,A<int>> b_stuff;
20         }
21 }