2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0695-4.cs
blobfdefb0e591239edf5bfa48c8b4de3037c1719dfe
1 // CS0695: `C<X,Y>' cannot implement both `I<K<Y>>' and `I<X>' 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 { }