Files
react/compiler/crates/react_hermes_parser/tests/fixtures/function-declaration-redeclare.js
2024-04-02 16:49:31 -07:00

8 lines
90 B
JavaScript

function component() {
function x(a) {
a.foo();
}
function x() {}
return x;
}