```py from typing import cast class Test: a: int t = Test() cast(t.a, int) # error: Name "t.a" is not defined ``` This leave me being like:  Till I realize that I got the args the wrong way around.