TypeScript/tests/baselines/reference/functionCall1.js
2014-07-12 17:30:19 -07:00

11 lines
155 B
JavaScript

//// [functionCall1.ts]
function foo():any{return ""};
var x = foo();
//// [functionCall1.js]
function foo() {
return "";
}
;
var x = foo();