summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug658561.js
blob: a8c0937c006352768151ce475835d42809fb55df (plain)
1
2
3
4
5
var s1 = 'xx';
for (var x = 0; x < 10 ; ++x ) { 
  new function() { return s1++; };
  gc();
}