TypeScript/tests/baselines/reference/functionCall1.types
2014-08-25 10:55:22 -07:00

9 lines
161 B
Text

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