blob: 0a5f9e2e79a557fd74b267befd590669a7f99ff8 [file] [log] [blame]
function test2() {
function foo() {
const o = {};
for (let i = 0; i < 8; i++) {
let x = o.multiline;
o.__proto__ = RegExp;
}
delete RegExp.input;
}
foo();
foo();
}
test2();