Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
6.8.0
-
None
Description
When placing comments after curly braces, the comments are moved to separate lines.
Input:
if (true) { // comment 1 a(); } else { // comment 2 b(); }
Output:
if (true) { // comment 1 a(); } else { // comment 2 b(); }