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

5 lines
233 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/functionOverloads4.ts (1 errors) ====
function foo():number;
~~~~~~~~~~~~~~~~~~~~~~
!!! Overload signature is not compatible with function implementation.
function foo():string { return "a" }