Given this input: ```ts function f() { const x = 1; { const y = 2; { return x; } } } ``` * Rename `x` to `y` * Rename `y` to `x` Both should be rejected as errors.
Given this input:
xtoyytoxBoth should be rejected as errors.