summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1293575.js
blob: 3e88699e0f49d689dc3c0fb5a296f355ec537a92 (plain)
1
2
3
4
5
6
7
8
9
function f(y) {
    y = 123456;
    for (var x = 0; x < 9; ++x) {
        z = arguments.callee.arguments;
        assertEq(z[0], Math);
    }
}
f(Math);