blob: d0d90dc7805aef4665d47ecebef05c95f050b2dc [file] [log] [blame]
x = []
Object.defineProperty(x, 4, {
configurable: true
})
Array.prototype.pop.call(x)
for (let y = 0; y < 9; ++y) {
Object.defineProperty(x, 7, {
configurable: true,
enumerable: (y != 2),
writable: true
})
}