rust/tests/source/issue-4926/minimum_example.rs
2021-10-20 00:11:59 -05:00

10 lines
153 B
Rust

// rustfmt-struct_field_align_threshold: 30
struct X { a: i32, b: i32 }
fn test(x: X) {
let y = matches!(x, X {
a: 1,
..
});
}