TypeScript/tests/baselines/reference/functionOverloads22.errors.txt

10 lines
476 B
Plaintext
Raw Normal View History

tests/cases/compiler/functionOverloads22.ts(2,10): error TS2394: Overload signature is not compatible with function implementation.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/functionOverloads22.ts (1 errors) ====
function foo(bar:number):{a:number;}[];
function foo(bar:string):{a:number; b:string;}[];
~~~
!!! error TS2394: Overload signature is not compatible with function implementation.
2014-07-13 01:04:16 +02:00
function foo(bar:any):{a:any;b?:any;}[] { return [{a:""}] }