15 lines
120 B
JavaScript

import { foo } from "somewhere";
// foo might call "bar"
foo();
a;
let a;
a;
export function bar() {
return a;
}