Sign in
◑
Theme
rust
/
rust
/
8662be8340e5e2bc06fe16b7df0a7d02ebdf5e64
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
issue-4926
/
minimum_example.rs
blob: 2c3045dea489e0f11698451f9f4bfa0b797cfdfa [
file
]
// rustfmt-struct_field_align_threshold: 30
struct
X
{
a
:
i32
,
b
:
i32
}
fn
test
(
x
:
X
)
{
let
y
=
matches
!(
x
,
X
{
a
:
1
,
..
});
}