Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/alias-capture-in-method-receiver.js
T
2026-08-27 21:09:14 +00:00

11 lines
157 B
JavaScript

function Component() {
// a's mutable range should be limited
// the following line
let a = someObj();
let x = [];
x.push(a);
return [x, a];
}