summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug824347.js
blob: 5e48c33ba7303a715b6063ba3d706b690745bee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
function g() { }
function f(b) {
    var test;
    if (b) {
        g.apply(null, arguments);
        var test = 1;
    } else {
        f(false);
    }
}
f(true);