Sebastian McKenzie 4ea9b9c028 better exec tests
2014-10-15 14:28:51 +11:00

13 lines
164 B
JavaScript

(function() {
var x = 1;
function f() {
assert.equal(x, 1);
{
let x = 2;
assert.equal(x, 2);
}
assert.equal(x, 1);
}
f();
})();