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",
|
2017-06-15 02:26:46 -05:00
|
|
|
Weird(
|
|
|
|
x,
|
|
|
|
_,
|
|
|
|
_,
|
|
|
|
// dont condense before
|
|
|
|
..
|
|
|
|
) => "pls work",
|
2016-11-07 14:38:20 -06:00
|
|
|
}
|
|
|
|
}
|