blob: a83a326f039eb31505243558599b23203b508d3a [file] [log] [blame]
// |jit-test| error: TypeError
x = [];
Object.defineProperty(this, "y", {
get: function() {
FakeDOMObject.caller
}
});
Object.defineProperty(x, 3, {
get: function() {
y[13];
}
});
(function() {
x.shift();
})();