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

11 lines
295 B
Plaintext

==== tests/cases/compiler/thisWhenTypeCheckFails.ts (1 errors) ====
class c {
public n() {
var k = () => {
var s: string = this.n();
~
!!! Type 'void' is not assignable to type 'string'.
}
}
}