2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0695-2.cs
blob791967c8ba6cf470cba6124c2a740c38c6f99fd2
1 // CS0695: `A<X,Y,Z>' cannot implement both `I<X>' and `I<A<Y,Y,Z>>' 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 { }