blob: db0509b33838d73a66b023cf588e90b3a8e87e4d [file] [log] [blame]
//@ requireOptions("--validateAbstractInterpreterState=true", "--validateAbstractInterpreterStateProbability=1.0", "--forceEagerCompilation=true")
Array.__proto__ = createGlobalObject();
function f() { const c = Array.__proto__ }
function test() {
with(0) {
f();
}
}
noInline(test);
for (let i = 0; i < 100; i++) {
test();
}