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

6 lines
239 B
Plaintext
Raw Normal View History

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