TypeScript/tests/cases/compiler/functionWithNoBestCommonType2.ts

9 lines
123 B
TypeScript

// @allowUnreachableCode: true
var v = function () {
return true;
return bar();
};
function bar(): void {
}