rust/tests/target/pattern-condense-wildcards.rs
2017-08-27 14:41:30 +09:00

12 lines
326 B
Rust

// 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",
Weird(x, _, _, /* dont condense before */ ..) => "pls work",
}
}