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

void foo<G>(G g = null) {
}

void main () {
	foo<int[]>();
}