summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1885819.js
blob: 8341c3ff52041d390b4790b66a1af39df34cae9c (plain)
1
2
3
4
5
6
7
8
9
10
function f() {
  var o = {};
  o["prop" + Date.now()] = 1;
  gc();
  schedulezone("atoms");
  gc("zone");
  let [x] = [0];
}
f();
oomTest(f);