Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/hoisting-repro-variable-used-in-assignment.js
2026-08-27 21:09:14 +00:00

14 lines
187 B
JavaScript

function get2() {
const callbk = () => {
const copy = x;
return copy;
};
const x = 2;
return callbk();
}
export const FIXTURE_ENTRYPOINT = {
fn: get2,
params: [],
};