]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/configs/use_field_init_shorthand/true.rs
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[rust.git] / src / tools / rustfmt / tests / target / configs / use_field_init_shorthand / true.rs
1 // rustfmt-use_field_init_shorthand: true
2 // Use field initialization shorthand if possible.
3
4 fn main() {
5     let a = Foo { x, y, z };
6
7     let b = Bar {
8         x,
9         y,
10         #[attr]
11         z,
12         #[rustfmt::skip]
13         skipped: skipped,
14     };
15 }