Files

14 lines
187 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function get2() {
const callbk = () => {
const copy = x;
return copy;
};
const x = 2;
return callbk();
}
export const FIXTURE_ENTRYPOINT = {
fn: get2,
params: [],
};