Files
react/compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-while.js
2024-04-02 16:49:31 -07:00

9 lines
102 B
JavaScript

function foo(a, b, c) {
let x = [];
let y = [];
while (c) {
y.push(b);
x.push(a);
}
}