**TypeScript Version:** 3.6.4 **Search Terms:** "Related Issues" feature of GitHub uses the title as search terms. **Code** ```ts class Base { get foo() { return 5 } } class Child extends Base { foo = 10 } new Child // runtime error! ``` **Expected behavior:** Type error during compile **Actual behavior:** No error until runtime. **Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior --> [playground](http://www.typescriptlang.org/play/#code/MYGwhgzhAEBCkFNoG8CwAoa0DmCAu0AZgPbEAUAlChllgE74CudAdtAKw3QC+Gv6GUJBgBhABYBLEABNoCAB54ELaTHgQkaTEVLQAvNACMABj4YMLBAHdo4qbID0D6HUYs8EgLZIEdOsToAQiA) **Related Issues:** <!-- Did you find other bugs that looked similar? --> Might be duplicate of https://github.com/microsoft/TypeScript/issues/13347, but not sure.