2017-01-16 14:50:27 +13:00
|
|
|
// rustfmt-normalize_comments: true
|
2017-05-18 08:03:47 -04:00
|
|
|
// rustfmt-condense_wildcard_suffixes: true
|
2016-11-07 21:38:20 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match x {
|
|
|
|
Butt (_,_) => "hah",
|
|
|
|
Tup (_) => "nah",
|
|
|
|
Quad (_,_, x,_) => " also no rewrite",
|
|
|
|
Quad (x, _, _, _) => "condense me pls",
|
2018-10-19 00:44:14 +02:00
|
|
|
Weird (x, _, _, /* don't condense before */ _, _, _) => "pls work",
|
2016-11-07 21:38:20 +01:00
|
|
|
}
|
|
|
|
}
|