This code raises an error when executed but passes type checking: ``` python def f(x: A): pass y = A() class A: pass ```