Source code
Revision control
Copy as Markdown
Other Tools
var test;
{
with ({a: 2}) {
{
let a = 5;
test = (function () { return a; })();
}
}
}
assertEq(test, 5);
var test;
{
with ({a: 2}) {
{
let a = 5;
test = (function () { return a; })();
}
}
}
assertEq(test, 5);