Source code

Revision control

Copy as Markdown

Other Tools

var test;
function f() {
{
let a = 5;
with ({a: 2}) {
test = (function () { return a;} )();
}
}
}
f();
assertEq(test, 2);