```js // @ts-check class C { constructor() { Object.defineProperty(this, "x", { value: "hello" }); this.x.toLowerCase(); } } ``` **Expected**: No error. **Actual**: `Property 'x' does not exist on type 'C'.`