summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug737388.js
blob: 1a97ab57feab06cb747f42e687ca266952542d5a (plain)
1
2
3
4
5
6
7
8
function one() {};
function two() { assertEq(arguments[0], undefined); }
function three() {
    one("","","","","","");
    two();
}
for (var i = 0; i < 10; ++i)
    three();