<!-- BEFORE SUBMITTING AN ISSUE: Option requests are out of scope for CSharpier, they will be closed without discussion. --> **Input:** ``` int x = 1; { int x = 2; } ``` **Output:** ``` int x = 1; { int x = 2; } ``` **Expected behavior:** ``` int x = 1; { int x = 2; } ```