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

11 lines
179 B
TypeScript
Raw Normal View History

2016-03-25 21:29:58 +01:00
let obj: number[];
let x: string | number | boolean | RegExp;
function a() {
x = true;
for (x of obj) {
x = x.toExponential();
}
2016-03-26 01:03:12 +01:00
x; // string | boolean
2016-03-25 21:29:58 +01:00
}