2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0309-4.cs
blob6606028ada2c210790112f4b4f25f37a718f02b5
1 // gcs0309.cs: The type `U' must be convertible to `System.IComparable' in order to use it as parameter `T' in the generic type or method `A<T>'
2 // Line: 13
4 using System;
6 class A<T>
7 where T: IComparable
11 class B<U,V>
12 where V: A<U>
16 class Driver
18 public static void Main ()