rust/tests/target/issue-1021.rs
2019-08-06 11:09:45 +09:00

23 lines
473 B
Rust

// rustfmt-normalize_comments: true
fn main() {
match x {
S(true, .., true) => (),
S(true, ..) => (),
S(.., true) => (),
S(..) => (),
S(_) => (),
S(/* .. */ ..) => (),
S(/* .. */ .., true) => (),
}
match y {
(true, .., true) => (),
(true, ..) => (),
(.., true) => (),
(..) => (),
(_,) => (),
(/* .. */ ..) => (),
(/* .. */ .., true) => (),
}
}