I write this code: ```rust struct Abc([u8; // five 5 + // ten 10 + // thirteen 13 ]); ``` rustfmt formats this to: ```rust struct Abc( [u8; 5 + // ten 10 + // thirteen 13], ); ``` It has lost the `// five` comment. The remainder of the formatting is not great. [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=bb112c850c15914f25c4b04eb128a9d9) version: ``` rustfmt 1.8.0-stable (90b35a6239 2024-11-26) ```