mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +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;
|
|
}
|