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

gcs0695-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51d112bb3f4afd47513361eb7a0b130b182164d4 (plain)
1
2
3
4
5
6
7
8
interface I<X>
{ }

interface K<X>
{ }

class C<X,Y> : I<K<Y>>, I<X>
{ }