## Description It should be safe to remove unnecessarily nested blocks when there's no statements in between: `{{{ <stmts> }}} => { <stmts> }`. ## Example Input: ```rust fn f() { {{{{{ g() }}}}}; } ``` ---- Expected output: ```rust fn f() { g(); } ``` Actual output: ```rust fn f() { { { { { { g() } } } } }; } ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"vats004"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->