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

interface IFoo<G> {
}

class Foo<K,V> : IFoo<K,V> {
}

void main () {
}