summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/use_field_init_shorthand/false.rs
blob: 7433044688670d452a2a330adbf0073815e6b88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// rustfmt-use_field_init_shorthand: false
// Use field initialization shorthand if possible.

fn main() {
    let a = Foo { x: x, y: y, z: z };

    let b = Bar {
        x: x,
        y: y,
        #[attr]
        z: z,
        #[rustfmt::skip]
        skipped: skipped,
    };
}