rust/tests/target/issue-2955.rs

7 lines
106 B
Rust
Raw Normal View History

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