Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0695-2.cs
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
3
4 interface I<X>
5 { }
6
7 class A<X,Y,Z> : I<X>, I<A<Y,Y,Z>>
8 { }