Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/obj-literal-mutated-after-if-else.js
2026-08-27 21:09:14 +00:00

12 lines
125 B
JavaScript

function foo(a, b, c, d) {
let x = {};
if (someVal) {
x = {b};
} else {
x = {c};
}
x.f = 1;
return x;
}