michael@0: // |jit-test| error: TypeError michael@0: x = []; michael@0: Object.defineProperty(this, "y", { michael@0: get: function() { michael@0: print.caller michael@0: } michael@0: }); michael@0: Object.defineProperty(x, 3, { michael@0: get: function() { michael@0: y[13]; michael@0: } michael@0: }); michael@0: (function() { michael@0: x.shift(); michael@0: })(); michael@0: