]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/source/issue-4791/trailing_comma.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / src / tools / rustfmt / tests / source / issue-4791 / trailing_comma.rs
1 // rustfmt-struct_field_align_threshold: 30
2 // rustfmt-trailing_comma: Always
3
4 struct Foo {
5 group_a: u8,
6
7 group_b: u8
8 }
9
10 struct Bar {
11 group_a: u8,
12
13 group_b: u8,
14 }