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

14 lines
983 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/errorOnContextuallyTypedReturnType.ts(1,5): error TS2322: Type '() => void' is not assignable to type '() => boolean'.
Type 'void' is not assignable to type 'boolean'.
tests/cases/compiler/errorOnContextuallyTypedReturnType.ts(2,37): error TS2355: A function whose declared type is neither 'void' nor 'any' must return a value or consist of a single 'throw' statement.
==== tests/cases/compiler/errorOnContextuallyTypedReturnType.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
var n1: () => boolean = function () { }; // expect an error here
~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '() => void' is not assignable to type '() => boolean'.
!!! error TS2322: Type 'void' is not assignable to type 'boolean'.
2014-07-13 01:04:16 +02:00
var n2: () => boolean = function ():boolean { }; // expect an error here
~~~~~~~
!!! error TS2355: A function whose declared type is neither 'void' nor 'any' must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00