summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug592973-1.js
blob: c6f44bfe77d60b612564b6c9ea9991d0df93579e (plain)
1
2
3
4
5
6
7
8
9
10
11
function f(x) {
    if (x) {
        let y;
        y = 12;
        (function () {
          assertEq(y, 12);
        })();
    }
}
f(1);