mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
12 lines
162 B
JavaScript
12 lines
162 B
JavaScript
function Component() {
|
|
const x = {};
|
|
{
|
|
const x = [];
|
|
const fn = function () {
|
|
mutate(x);
|
|
};
|
|
fn();
|
|
}
|
|
return x; // should return {}
|
|
}
|