]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-5066/multi_line_struct_with_trailing_comma_never.rs
Merge 'rust-clippy/master' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / issue-5066 / multi_line_struct_with_trailing_comma_never.rs
1 // rustfmt-trailing_comma: Never
2 // rustfmt-struct_lit_single_line: false
3
4 // There is an issue with how this is formatted.
5 // formatting should look like ./multi_line_struct_trailing_comma_never_struct_lit_width_0.rs
6 fn main() {
7     let Foo {
8         a, ..
9     } = b;
10 }