summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1287869.js
blob: 7c1e8662e849f264cecd6fbd01b8848ca187f4f6 (plain)
1
2
3
4
5
6
7
8
if (!('gczeal' in this))
    quit();

gczeal(16);
let a = [];
for (let i = 0; i < 1000; i++)
    a.push({x: i});
gc();