2020-05-29 15:03:46 -05:00
|
|
|
struct Binder(i32, i32, i32);
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = Binder(1, 2, 3);
|
|
|
|
match x {
|
|
|
|
Binder(_a, _x @ ..) => {}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//~^^^^ ERROR `_x @` is not allowed in a tuple struct
|
2020-07-30 17:19:49 -05:00
|
|
|
//~| ERROR: `..` patterns are not allowed here
|
|
|
|
//~| ERROR: this pattern has 2 fields, but the corresponding tuple struct has 3 fields
|