The type checker complains about the `self.B()` call in the program below: ``` class A: class B: pass def f(self) -> None: self.B() ```