mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
15 lines
178 B
Rust
15 lines
178 B
Rust
// rustfmt-struct_field_align_threshold: 30
|
|
// rustfmt-trailing_comma: Never
|
|
|
|
struct Foo {
|
|
group_a: u8,
|
|
|
|
group_b: u8,
|
|
}
|
|
|
|
struct Bar {
|
|
group_a: u8,
|
|
|
|
group_b: u8
|
|
}
|