rustfmt-nightly 1.1.1

Tool to find and fix Rust formatting issues
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn issue1518() {
    Some(Object {
        field: if a {
            a_thing
        } else if b {
            b_thing
        } else {
            c_thing
        },
    })
}