summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/jaeger/bug592973-1.js
blob: 470f84ee359bf9d5f06b97678c3ab795889ac4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// vim: set ts=4 sw=4 tw=99 et:
function f(x) {
    if (x) {
        let y;
        y = 12;
        (function () {
          assertEq(y, 12);
        })();
    }
}
f(1);