quote only work on lambda on net_4_0
[mcs.git] / errors / gcs0309-6.cs
blob2b932584751ac4b2c8f63de9617fe43a97065de0
1 // CS0309: The type `B<int>' must be convertible to `D<B<int>>' in order to use it as parameter `X' in the generic type or method `C<X>'
2 // Line: 3
3 class A : C<B<int>> {}
4 class B<X> {}
5 interface C<X> where X : D<X> {}
6 interface D<X> {}