swc/crates/swc_ecma_parser/tests/tsc/controlFlowConditionalExpression.ts

6 lines
99 B
TypeScript
Raw Normal View History

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