rust/tests/target/configs/use_field_init_shorthand/true.rs
2018-05-14 16:25:10 +12:00

16 lines
263 B
Rust

// rustfmt-use_field_init_shorthand: true
// Use field initialization shorthand if possible.
fn main() {
let a = Foo { x, y, z };
let b = Bar {
x,
y,
#[attr]
z,
#[rustfmt::skip]
skipped: skipped,
};
}