rust/tests/source/issue-2955.rs

6 lines
111 B
Rust

// rustfmt-condense_wildcard_suffixes: true
fn main() {
match (1, 2, 3) {
(_, _, _) => (),
}
}