summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1621268-2.js
blob: 1788a75c1075574726268b11c6996269081393b8 (plain)
1
2
3
4
5
6
function f() {
    for (const x of []) {
       for (let y of [y, y]) {}
    }
}
f();