TypeScript/tests/baselines/reference/functionReturningItself.types
2015-04-15 16:44:20 -07:00

8 lines
165 B
Plaintext

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