summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1003161.js
blob: c2c602acb57d2985b47c56f1fcd5e5f97c1956bb (plain)
1
2
3
4
5
6
7
8

function foo(a, b) {
    function bar() {
	return b;
    }
    return arguments[0] + arguments[1] + bar();
}
foo(1, 2);