<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.6 **Code** ```ts interface Human { /** Name of human */ name: string } class OhHuman implements Human { name = 'Jack' } (new OhHuman).name ``` **Expected behavior:** > `(property) OhHuman.name: string` <br /> > Name of human **Actual behavior:** > `(Property) OhHuman.name: string` **Also See:** https://github.com/Microsoft/TypeScript/issues/12966#issuecomment-339180869