blob: 1b80a21793a0aa42b8b89813a783e3069073a454 (
plain)
1
2
3
4
5
6
7
8
9
10
|
fn main() {
let x = (1, 2, 3);
match x {
(_a, _x @ ..) => {}
_ => {}
}
}
//~^^^^ ERROR `_x @` is not allowed in a tuple
//~| ERROR: `..` patterns are not allowed here
//~| ERROR: mismatched types
|