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

12 lines
577 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/overloadingOnConstantsInImplementation.ts (3 errors) ====
function foo(a: 'hi', x: string);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Specialized overload signature is not assignable to any non-specialized signature.
function foo(a: 'hi', x: string);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Specialized overload signature is not assignable to any non-specialized signature.
function foo(a: 'hi', x: any) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}
~
!!! A signature with an implementation cannot use a string literal type.