2017-01-15 19:50:27 -06:00
|
|
|
// rustfmt-normalize_comments: true
|
2017-05-18 07:03:47 -05:00
|
|
|
// rustfmt-condense_wildcard_suffixes: true
|
2016-11-07 14:38:20 -06:00
|
|
|
|
|
|
|
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",
|
2016-11-07 14:38:20 -06:00
|
|
|
}
|
|
|
|
}
|