summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/spread-closed-over-arguments.js
blob: 15dd800ae3950c22d1d362980f953e44882ecc2c (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(...arguments);
}

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