rustfmt adds an extra `pub` modifier to public fields in structs, causing the code to no longer compile. ``` rust // before rustfmt struct X { pub x : u64, } // after rustfmt struct X { pub pub x: u64, } ```