TypeScript/tests/baselines/reference/functionReturningItself.types

8 lines
165 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/functionReturningItself.ts ===
function somefn() {
>somefn : () => typeof somefn
return somefn;
>somefn : () => typeof somefn
}