mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
let x: string | number | boolean;
|
|
let cond: boolean;
|
|
|
|
(x = "") && (x = 0);
|
|
x; // string | number
|
|
|
|
x = "";
|
|
cond && (x = 0);
|
|
x; // string | number
|