blob: a85a16004ad236782accb22b1f92ee2e6db4a787 [file] [log] [blame]
// 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, _, _, /* don't condense before */ ..) => "pls work",
}
}