12 lines
137 B
JavaScript

if (true) {
var x;
(function () {
function foo() {}
function bar() {
return foo;
}
for (x in {}) {}
})();
}