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'.
            }
        }    
    }
    