summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-981289.js
blob: edba3fc974c353a8db2218019f92285d52ca4d46 (plain)
1
2
3
4
5
6
7
8
gcPreserveCode();
function test() {
  for (var i=0; i<20; i++) {
      arguments.x = {};
      gc();
  }
}
test();