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

25 lines
1.3 KiB
Text
Raw Normal View History

tests/cases/compiler/overloadOnConstantsInvalidOverload1.ts(6,1): error TS2382: Specialized overload signature is not assignable to any non-specialized signature.
tests/cases/compiler/overloadOnConstantsInvalidOverload1.ts(7,1): error TS2381: A signature with an implementation cannot use a string literal type.
tests/cases/compiler/overloadOnConstantsInvalidOverload1.ts(11,5): error TS2345: Argument of type 'string' is not assignable to parameter of type '"SPAN"'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/overloadOnConstantsInvalidOverload1.ts (3 errors) ====
class Base { foo() { } }
class Derived1 extends Base { bar() { } }
class Derived2 extends Base { baz() { } }
class Derived3 extends Base { biz() { } }
function foo(name: "SPAN"): Derived1;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2382: Specialized overload signature is not assignable to any non-specialized signature.
2014-07-13 01:04:16 +02:00
function foo(name: "DIV"): Derived2 {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
return null;
~~~~~~~~~~~~~~~~
}
~
!!! error TS2381: A signature with an implementation cannot use a string literal type.
2014-07-13 01:04:16 +02:00
foo("HI");
~~~~
!!! error TS2345: Argument of type 'string' is not assignable to parameter of type '"SPAN"'.