Flush (work in progress)
[mono.git] / mcs / errors / gcs0314.cs
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
3
4 using System;
5
6 class A<T>
7         where T: IComparable
8 {
9 }
10
11 class B<U,V>
12         where V: A<U>
13 {
14 }
15
16 class Driver
17 {
18         public static void Main ()
19         {
20         }
21 }