TypeScript/tests/cases/compiler/functionCall4.ts

3 lines
85 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
function foo():any{return ""};
function bar():()=>any{return foo};
var x = bar();