14 lines
135 B
JavaScript

var run = function () {
return false;
};
if (true) {
function run() {
return true;
}
}
function test() {
return run();
}