This is often encountered: ```python c : str s : str = "test" for c in s: ... ``` The iteration variable `c` should be just above the `for`, a warning should be produced. ```python s : str = "test" c : str # correct place for c in s: ... ```