summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug660737.js
blob: b36b8ee779ec92389741cf5776a2221220344479 (plain)
1
2
3
4
5
6
7
8
9
10
(function() {
    function f(l) {
        w++
    }
    for each(let w in ['', '', 0]) {
        try {
            f(w)
        } catch (e) {}
    }
})()