summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug657890.js
blob: 1d74fc48cb71d8cf2bcb78cde3d1333b3039f74f (plain)
1
2
3
4
5
6
function f() {};
var x;
for(var i=0; i<200; i++) {
    x = f.bind(x, x, 2);
    gc();
}