rustfmt-nightly 1.4.21

Tool to find and fix Rust formatting issues
1
2
3
4
5
6
7
8
9
fn issue982() {
    const SOME_CONSTANT: u32 =
        // Explanation why SOME_CONSTANT needs FLAG_A to be set.
        FLAG_A |
        // Explanation why SOME_CONSTANT needs FLAG_B to be set.
        FLAG_B |
        // Explanation why SOME_CONSTANT needs FLAG_C to be set.
        FLAG_C;
}