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

5 lines
56 B
JavaScript

function f() {
let x = 1;
return x + (x = 2) + x;
}