2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0695-3.cs
blob447a0b29dabe82162f0b58c55da03e74e86f6bab
1 // gcs0695.cs: `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<X>, I<K<Y>>
11 { }