TypeScript/tests/baselines/reference/functionWithNoBestCommonType2.js

17 lines
254 B
TypeScript

//// [functionWithNoBestCommonType2.ts]
var v = function () {
return true;
return bar();
};
function bar(): void {
}
//// [functionWithNoBestCommonType2.js]
var v = function () {
return true;
return bar();
};
function bar() {
}