TypeScript/tests/cases/conformance/controlFlow/controlFlowAssignmentExpression.ts

11 lines
144 B
TypeScript
Raw Normal View History

2016-03-25 21:29:58 +01:00
let x: string | boolean | number;
let obj: any;
x = "";
x = x.length;
x; // number
x = true;
(x = "", obj).foo = (x = x.length);
x; // number