**Code** ```ts function h() { let y = 1 y++ } ``` **Expected behavior:** ```ts function h() { } ``` OR ```ts function h() { let y = 1 y++ } ``` **Actual behavior:** ```ts function h() { y++ } ``` The first is probably preferable because codefix-all removes both lines for this similar example: ```ts function h() { let y = 1 y = 2 } ```