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