TypeScript/tests/baselines/reference/errorOnContextuallyTypedReturnType.errors.txt
2014-09-11 16:11:08 -07:00

9 lines
584 B
Plaintext

==== tests/cases/compiler/errorOnContextuallyTypedReturnType.ts (2 errors) ====
var n1: () => boolean = function () { }; // expect an error here
~~
!!! error TS2322: Type '() => void' is not assignable to type '() => boolean':
!!! error TS2322: Type 'void' is not assignable to type 'boolean'.
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.