blob: e1e975d3c3ea04b3a7d3a42b434d2a9f998ce65e [file] [log] [blame]
fn main() {
match (0, 1, 2) {
(.., pat, ..) => {}
//~^ ERROR `..` can only be used once per tuple or tuple struct pattern
}
}