TypeScript/tests/baselines/reference/functionCall3.js

10 lines
157 B
JavaScript
Raw Normal View History

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