swc/crates/swc_ecma_parser/tests/tsc/controlFlowBinaryAndExpression.ts
2022-02-04 17:08:38 +09:00

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