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