TypeScript/tests/baselines/reference/functionReturningItself.types
2015-04-13 14:29:37 -07:00

8 lines
277 B
Plaintext

=== tests/cases/compiler/functionReturningItself.ts ===
function somefn() {
>somefn : () => typeof somefn, Symbol(somefn, Decl(functionReturningItself.ts, 0, 0))
return somefn;
>somefn : () => typeof somefn, Symbol(somefn, Decl(functionReturningItself.ts, 0, 0))
}