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

21 lines
339 B
TypeScript
Raw Normal View History

2016-04-25 20:24:39 +02:00
// @strictNullChecks: true
let cond: boolean;
function ff() {
let x: string | undefined;
while (true) {
if (cond) {
x = "";
}
else {
if (x) {
x.length;
}
if (x) {
x.length;
}
}
}
}