```rust #![feature(slice_patterns)] fn main() { match b"123" { [0, ..] => {} _ => {} } } ``` As of rustfmt 0.99.1-nightly (da17b68 2018-08-04), formatting produces the following diff which I believe is less readable than the original: ```diff - [0, ..] => {} + [0, _..] => {} ```