mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
8 lines
75 B
JavaScript
8 lines
75 B
JavaScript
function foo() {
|
|
let x = 1;
|
|
if (x === 1) {
|
|
x = 2;
|
|
}
|
|
throw x;
|
|
}
|