TypeScript/tests/cases/conformance/controlFlow/controlFlowAssignmentExpression.ts
2016-03-25 21:29:58 +01:00

11 lines
144 B
TypeScript

let x: string | boolean | number;
let obj: any;
x = "";
x = x.length;
x; // number
x = true;
(x = "", obj).foo = (x = x.length);
x; // number