New generics tests.
[mono.git] / mcs / errors / gcs0695-4.cs
1 interface I<X>
2 { }
3
4 interface K<X>
5 { }
6
7 class C<X,Y> : I<K<Y>>, I<X>
8 { }