mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
7 lines
82 B
JavaScript
7 lines
82 B
JavaScript
function Component(c) {
|
|
let x = { c };
|
|
mutate(x);
|
|
let a = x;
|
|
let b = a;
|
|
}
|