summaryrefslogtreecommitdiff
path: root/tests/arrays/resize-local-size.vala
blob: 05522012be0b7ff764b1b32004ff27b775e93fac (plain)
1
2
3
4
5
6
7
8
9
void main() {
	int[] a = new int[10 * 1024 * 1024];

	a.resize (1);

	for (int i = 1; i < 10 * 1024 * 1024; i++) {
		a += 4711;
	}
}