blob: 29d9b8c4c1aa89cde1f32d692e3b4d81bfc40334 [file] [log] [blame]
const x = new Proxy(Promise, {});
function foo() {
new x(()=>{});
}
for (let i=0; i<100000; i++) {
foo();
}