TypeScript/tests/baselines/reference/thisWhenTypeCheckFails.errors.txt
2014-11-05 12:26:03 -08:00

14 lines
430 B
Plaintext

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