16 lines
282 B
Rust
16 lines
282 B
Rust
// 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,
|
|
};
|
|
}
|