TypeScript/tests/cases/compiler/functionWithNoBestCommonType1.ts

7 lines
No EOL
85 B
TypeScript

function foo() {
return true;
return bar();
}
function bar(): void {
}