summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1076026.js
blob: 1bfacef0e06177a333fb6a0239b8eb5348b46b13 (plain)
1
2
3
4
5
6
7
8
9
(function f() {
    let x = (new function() {})
    this.__defineGetter__("x", function() {
        ({
            e: x
        })
    })
})();
print(x)