// 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' // Line: 13 using System; class A where T: IComparable { } class B where V: A { } class Driver { public static void Main () { } }