summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/pic/bug582899.js
blob: 1db4be3d77dc3ae116cf2a5727479d0719dea421 (plain)
1
2
3
4
5
6
7
8
try {
    (function () {
        __proto__ = [];
        for each(y in [0, 0]) {
            this.__defineGetter__("", function () {})
        }
    })()
} catch (e) {}