A line comment before a case in a switch expression seems to force it to split when it otherwise wouldn't need to. The formatter currently produces: ```dart return switch (level) { 0 => a, // Comment. 1 when flag => b, }; return switch (level) { 0 => a, 1 when flag => b, }; ``` Both should have the same formatting for the `1 when flag => b` case.