summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug755916.js
blob: 157d3073ac146cede74dc8d1cfc6f1505b6986d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// |jit-test| error:InternalError

Object.defineProperty(this, "t2", {
    get: function() {
        for (p in h2) {
            t2
        }
    }
})
h2 = {}
h2.a = function() {}
Object(t2)