rust/tests/target/pattern-condense-wildcards.rs

13 lines
327 B
Rust
Raw Normal View History

// rustfmt-normalize_comments: true
// rustfmt-condense_wildcard_suffixes: true
fn main() {
match x {
Butt(..) => "hah",
Tup(_) => "nah",
Quad(_, _, x, _) => " also no rewrite",
Quad(x, ..) => "condense me pls",
2018-10-18 17:44:14 -05:00
Weird(x, _, _, /* don't condense before */ ..) => "pls work",
}
}