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

8 lines
314 B
Plaintext

==== tests/cases/compiler/functionWithThrowButNoReturn1.ts (1 errors) ====
function fn(): number {
~~~~~~
!!! A function whose declared type is neither 'void' nor 'any' must return a value or consist of a single 'throw' statement.
throw new Error('NYI');
var t;
}