TypeScript/tests/baselines/reference/functionCall2.js

9 lines
151 B
TypeScript

//// [functionCall2.ts]
function foo():number{return 1};
var x = foo();
//// [functionCall2.js]
function foo() { return 1; }
;
var x = foo();