summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-4791/trailing_comma.rs
blob: c56c70faeae40f4916275883540b10b342fca9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// rustfmt-struct_field_align_threshold: 30
// rustfmt-trailing_comma: Always

struct Foo {
    group_a: u8,

    group_b: u8
}

struct Bar {
    group_a: u8,

    group_b: u8,
}