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

9 lines
170 B
Text

=== tests/cases/compiler/functionCall2.ts ===
function foo():number{return 1};
>foo : typeof foo
var x = foo();
>x : number
>foo() : number
>foo : typeof foo