imported everything from my branch (which is slightly harmless).
[mono.git] / mcs / errors / gcs0695-3.cs
1 // gcs0695.cs: `C<X,Y>' cannot implement both `I`1<K`1<Y>>' and `I`1<X>' because they may unify for some type parameter substitutions
2 // Line: 10
3
4 interface I<X>
5 { }
6
7 interface K<X>
8 { }
9
10 class C<X,Y> : I<X>, I<K<Y>>
11 { }