```py class Foo: @property def foo(self) -> int: ... class Bar(Foo): foo: int def __init__(self) -> None: self.foo = 2 # runtime error Bar() ``` [playground](https://mypy-play.net/?mypy=latest&python=3.10&gist=a93475271582357694f05edee99628e4)