2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0695-2.cs
blob9600a375e2b7551f6cc9a484e283691ca59d3691
1 // gcs0695.cs: `A<X,Y,Z>' cannot implement both `I<A<Y,Y,Z>>' and `I<X>' because they may unify for some type parameter substitutions
2 // Line: 7
4 interface I<X>
5 { }
7 class A<X,Y,Z> : I<X>, I<A<Y,Y,Z>>
8 { }