summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug541191-1.js
blob: 74ccae82976e2b414ffad5cd8e5be7ca4152a70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* vim: set ts=8 sts=4 et sw=4 tw=99: */

function g(a, b, c, d) {
    return "" + a + b + c + d;
}

var x = 1;
function f(a, b, c) {
    arguments[1] = 2;
    arguments[2] = 3;
    arguments[3] = 4;
    if (!x)
        arguments.length = 4;
    var k;
    for (var i = 0; i < 10; i++)
        k = g.apply(this, arguments);
    return k;
}

assertEq(f(1), "1undefinedundefinedundefined");
x = 0;
assertEq(f(1), "1234");