ignores
[mcs.git] / errors / gcs0695-4.cs
blob8cf0ba4a547e688b91b5afa158ca5b543e1a3683
1 // gcs0695.cs: `C<X,Y>' cannot implement both `I<X>' and `I<K<Y>>' because they may unify for some type parameter substitutions
2 // Line: 10
4 interface I<X>
5 { }
7 interface K<X>
8 { }
10 class C<X,Y> : I<K<Y>>, I<X>
11 { }