Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.invalid-delete-computed-property-of-frozen-value.js
2026-08-27 21:09:14 +00:00

8 lines
113 B
JavaScript

function Component(props) {
const x = makeObject();
// freeze
<div>{x}</div>;
delete x[y];
return x;
}