TypeScript/tests/cases/compiler/bestChoiceType.ts

20 lines
355 B
TypeScript
Raw Normal View History

2016-08-01 18:49:27 +02:00
// @strictNullChecks: true
// Repro from #10041
(''.match(/ /) || []).map(s => s.toLowerCase());
// Similar cases
function f1() {
let x = ''.match(/ /);
let y = x || [];
let z = y.map(s => s.toLowerCase());
}
function f2() {
let x = ''.match(/ /);
let y = x ? x : [];
let z = y.map(s => s.toLowerCase());
}