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

10 lines
157 B
JavaScript

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