blob: b3bda0921250948246f980ed4ff455042f06b3a9 [file] [log] [blame]
function test() {
for (var i of array) {
}
for (let i of array) {
}
for (let c of ('x', String('cat'))) {
}
}