summaryrefslogtreecommitdiff
path: root/tests/semantic/interface-prerequisite-too-many-type-arguments.test
blob: 347b6c36ae354ed37bf114d1a08971df56628785 (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

interface IFoo<G> {
}

interface IBar<K,V> : IFoo<K,V> {
}

void main () {
}