TypeScript/tests/baselines/reference/functionCall2.js

9 lines
151 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionCall2.ts]
function foo():number{return 1};
var x = foo();
//// [functionCall2.js]
function foo() { return 1; }
2014-07-13 01:04:16 +02:00
;
var x = foo();