While strange,
struct Struct {
field: String /* Comment */ , /* Comment */
}
compiles.
When hit with cargo fmt it's transformed into
struct Struct {
field: String, /* Comment */ , /* Comment */
}
which fails to compile.
Observed on rustfmt 1.5.1-nightly (2022-06-30 7425fb2) and rustfmt 1.4.38-stable (db9d1b2 2022-01-20).