babel/test/fixtures/traceur/Scope/LetInitializerFor3.js
2015-01-04 19:40:09 +11:00

10 lines
208 B
JavaScript

// Options: --block-binding
for (let x = 1, y = x + 1; x < 10 && y != 0; x ++, y *= 2) {
if (y > 300) {
continue;
}
}
// ----------------------------------------------------------------------------