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

10 lines
129 B
JavaScript

// Options: --block-binding
// Error: :8:18: Unexpected token of
function* gen() {
yield 1;
}
for (const i = 0 of gen()) {
}