Byron Luk 0d9e77f559 rename colliding let bindings with for loop init (#8937)
* rename colliding let bindings with for loop init

* added complex test case to check if loop init collisions were handled correctly

* updated test files
2018-10-31 20:28:36 +01:00

8 lines
83 B
JavaScript

for (let a, { b } = {};;) {
let a, { b } = {};
{
let a, { b } = {};
}
}