summaryrefslogtreecommitdiff
path: root/tests/generics/arrays-not-supported-2.test
blob: 3682da65298da9532afb29131ba39837014f1f49 (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

interface Foo<T> : Object {
}

interface Bar : Object, Foo<int[]> {
}

void main () {
}