2015-01-21 22:40:17 +11:00

7 lines
68 B
JavaScript

let x = 0;
for (;;) {
let x = 1;
assert.equal(x, 1);
break;
}