summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug1024444.js
blob: 7ebd93dcdce107ce2c9f1a76b34a4a3683ec73a1 (plain)
1
2
3
4
5
6
7
function f(x) {
    x = eval("a = arguments.callee.arguments; 10");
}
for (var i=0; i<5; i++) {
    f(5);
    assertEq(a[0], 10);
}