Source code
Revision control
Copy as Markdown
Other Tools
// |jit-test| error:TypeError
function f() {
with(this) {};
}
(new new Proxy(f, {get: f}))();
// |jit-test| error:TypeError
function f() {
with(this) {};
}
(new new Proxy(f, {get: f}))();