Files
babel/packages/babel-preset-es2015/test/fixtures/traceur/Scope/LetReinitializeInLoop.js

10 lines
118 B
JavaScript

(function() {
var i = 0;
while (i < 3) {
let x;
assert.equal(undefined, x);
x = i;
i++;
}
})();