summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug765478.js
blob: 0cd9db3ea82bf787702613408c77cfb22368fe04 (plain)
1
2
3
4
5
6
7
8
function test1() {
    var input = arguments[undefined];
}
function test2() {
    return arguments["length"];
}
test1();
test2();