summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug849781.js
blob: 3818b97ef965ffc1de37054c72f1e61f86590188 (plain)
1
2
3
4
5
6
7
8
function c0(i) { print(i) }
function c1() { c0.apply({}, arguments); }
function c2() { c1.apply({}, arguments); }
function c3(a) { c2(a); }
c3(1);
c3(1);
c3("");
c3("");