blob: d48cb609ebb8e870122f7d0678fe2a9b4138698f [file] [log] [blame]
// |jit-test| error: TypeError
var glob = this;
var arr = [];
Object.defineProperty(arr, 0, {
get: (function() {
glob.__proto__;
})
});
this.watch("s", function() {});
try {
arr.pop();
} catch (e) {}
arr.pop();