summaryrefslogtreecommitdiff
path: root/tests/arrays/resize-constant.test
blob: 277db85af7b7974f1e6ba747e5d5f8b84cedbbfa (plain)
1
2
3
4
5
6
Invalid Code

void main () {
	const int[] foo = { 1, 2, 3 };
	foo.resize (2);
}