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

14 lines
430 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/thisWhenTypeCheckFails.ts(4,17): error TS2322: Type 'void' is not assignable to type 'string'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/thisWhenTypeCheckFails.ts (1 errors) ====
class c {
public n() {
var k = () => {
var s: string = this.n();
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'void' is not assignable to type 'string'.
2014-07-13 01:04:16 +02:00
}
}
}