TypeScript/tests/baselines/reference/functionCall1.js

11 lines
155 B
JavaScript
Raw Normal View History

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