Files
react/compiler/crates/react_hermes_parser/tests/fixtures/call-args-destructuring-assignment.js
2024-04-02 16:49:31 -07:00

6 lines
97 B
JavaScript

function Component(props) {
let x = makeObject();
x.foo(([x] = makeObject()));
return x;
}