summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1689880-2.js
blob: 2fefdc7ce2ef99710f0c3eb9faef9b1eba83b6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// |jit-test| error: ReferenceError

// We elide the uninitialised lexical check for the second access to |x|,
// because we statically know that the first access will throw an error.
// `x ? . : .` is compiled straight from bytecode without going through any
// ICs, so already on first (eager) compilation we may be Warp compiling.

function testConditional(x = (x, (x ? 1 : 0))) {
    function inner() {
        // Close over |x|.
        x;
    }
}
testConditional();