2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0314.cs
blobb2a9f85fecda900276fb45caa60176b8cba24503
1 // CS0314: The type `U' cannot be used as type parameter `T' in the generic type or method `A<T>'. There is no boxing or type parameter conversion from `U' to `System.IComparable'
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 ()