summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/apply-closed-over-arguments.js
blob: 708d4cdb0919cf5c3b29c3f34666f8d24f5c4810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function bar(x,y) {
    return x + y;
}

function foo(x, y) {
    function closeOver() { return x; }
    return bar.apply({}, arguments);
}

var sum = 0;
for (var i = 0; i < 100; i++) {
    sum += foo(1,2);
}
assertEq(sum, 300)