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

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