tests/cases/compiler/functionOverloads37.ts(4,9): error TS2554: Expected 1 arguments, but got 0.


==== tests/cases/compiler/functionOverloads37.ts (1 errors) ====
    function foo(bar:{a:number;}[]):string;
    function foo(bar:{a:boolean;}[]):number;
    function foo(bar:{a:any;}[]):any{ return bar }
    var x = foo();
            ~~~~~
!!! error TS2554: Expected 1 arguments, but got 0.
    