mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
357 B
Rust
16 lines
357 B
Rust
enum E {
|
|
A(u8, u8),
|
|
}
|
|
|
|
fn main() {
|
|
let e = E::A(2, 3);
|
|
match e {
|
|
E::A(x @ ..) => {
|
|
//~^ ERROR: `x @` is not allowed in a tuple struct
|
|
//~| ERROR: `..` patterns are not allowed here
|
|
//~| ERROR: this pattern has 1 field, but the corresponding tuple variant has 2 fields
|
|
x
|
|
}
|
|
};
|
|
}
|