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