blob: 865b1d48591e676fb987ca1240c9580e810e8dce [file] [log] [blame]
function inner() {
let x = 42;
return x;
}
function outer() {
inner();
}
outer();