blob: e2da308010f155e390074d090b19a882dfd71440 (
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 testNot(x = (x, !x)) {
function inner() {
// Close over |x|.
x;
}
}
testNot();
|