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

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

interface K<X>
{ }

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