Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/update-expression-on-function-parameter-3.js
2026-08-27 21:09:14 +00:00

12 lines
177 B
JavaScript

function Component({c}) {
let h = c++;
let i = --c;
return [c, h, i];
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{c: 4}],
isComponent: false,
};