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

8 lines
235 B
Plaintext

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