summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1122839.js
blob: 02bd090a515567e296cadfba9bcc6328adafc62f (plain)
1
2
3
4
5
6
7
8
9
10
11
x = '';
Object.defineProperty(this, "y", {
    get: function() {
        return x
    }
})
y
x = 0
x = new String;
y.__proto__ = []
y