summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5066/multi_line_struct_with_trailing_comma_never.rs
blob: cf63c4c983c46e32e395b32e86a395c666c95b16 (plain)
1
2
3
4
5
6
7
8
9
10
// rustfmt-trailing_comma: Never
// rustfmt-struct_lit_single_line: false

// There is an issue with how this is formatted.
// formatting should look like ./multi_line_struct_trailing_comma_never_struct_lit_width_0.rs
fn main() {
    let Foo {
        a, ..
    } = b;
}