summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug735869.js
blob: 3a74a13390ab3d2360efbadbc46d72207a45d6cd (plain)
1
2
3
4
5
6
7
8
9
10
11
o = {}
for (let i = 0; i < 70; i++) {
    try {
        p
    } catch (e) {}
    (function() {
        for (x in Iterator.prototype) {}
    })()
    o.__proto__ = null
    delete o.__proto__
}