11 lines
201 B
JavaScript

// Options: --block-binding
for (var x = 0; x < 10; x ++) {
let y = 'let y';
if (x % 2 == 0) {
continue;
}
}
// ----------------------------------------------------------------------------