Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0695.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51efc8985bb1492fb053f8429e81120bd0f1d4c5 (plain)
1
2
3
4
5
6
7
8
// gcs0695.cs: `A<X,Y>' cannot implement both `I<Y>' and `I<X>' because they may unify for some type parameter substitutions
// Line: 7

interface I<X>
{ }

class A<X,Y> : I<X>, I<Y>
{ }