7 lines
95 B
JavaScript

// Options: --block-binding
let x2;
assert.equal(undefined, x2);
x2 = 2;
assert.equal(2, x2);