rust/tests/source/issue-2955.rs

7 lines
111 B
Rust
Raw Normal View History

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