summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug775807.js
blob: b136b0a81b56deb56f1b9d233f1b2cb27e86dc45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// |jit-test| --dump-bytecode

(function() {
    const x = ((function() {
        return {
            e: function() {
                (function() {
                    for (e in x) {}
                })()
            }
        }
    }(function() {
        return {
            t: {
                c
            }
        }
    })))
})()