TypeScript/tests/cases/conformance/controlFlow/controlFlowIteration.ts
2016-04-25 11:24:39 -07:00

21 lines
339 B
TypeScript

// @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;
}
}
}
}