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