2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-102.cs
blob9b75103186161cd9d0526212460afb1f261c060c
1 using System;
3 class A<T>
4 where T: IComparable
8 class B<U,V>
9 where U: IComparable
10 where V: A<U>
14 class Driver
16 public static void Main ()
18 A<int> a_int;
19 B<int,A<int>> b_stuff;