quote only work on lambda on net_4_0
[mcs.git] / errors / gcs0695.cs
blob51efc8985bb1492fb053f8429e81120bd0f1d4c5
1 // gcs0695.cs: `A<X,Y>' cannot implement both `I<Y>' 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> : I<X>, I<Y>
8 { }