TypeScript/tests/cases/compiler/functionVariableInReturnTypeAnnotation.ts

4 lines
68 B
TypeScript

function bar(): typeof b {
var b = 1;
return undefined;
}