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