summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug674391.js
blob: 7fdc2c30375d0255b16b382cad64d49d59fd318c (plain)
1
2
3
4
5
6
7
8
9
10
11
a = [];
for (var i = 0; i < 1000; i++) {
  a[i] = i;
}
function foo(x) {
  for (var i in x) {
  }
}
if (typeof schedulegc != "undefined")
  schedulegc(100);
foo(a);