summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug673715.js
blob: b2040690612795bea00b656d26e8fe36e26d8d4d (plain)
1
2
3
4
5
6
7
8
9
10
function g() {
    "use strict";
    for (var i = 0; i < 50; i++)
        arguments[0];
    eval("");
}
function f() {
    g.call(arguments);
}
f();