TypeScript/tests/baselines/reference/functionCall1.types
2014-08-15 14:37:48 -07:00

10 lines
159 B
Plaintext

=== tests/cases/compiler/functionCall1.ts ===
function foo():any{return ""};
>foo : () => any
var x = foo();
>x : any
>foo() : any
>foo : () => any