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

6 lines
99 B
TypeScript

let x: string | number | boolean;
let cond: boolean;
cond ? x = "" : x = 3;
x; // string | number