2020-12-13 16:13:52 -06:00
|
|
|
struct S(i32, f32);
|
|
|
|
enum E {
|
|
|
|
S(i32, f32),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match S(0, 1.0) {
|
|
|
|
S(x) => {}
|
|
|
|
//~^ ERROR this pattern has 1 field, but the corresponding tuple struct has 2 fields
|
|
|
|
//~| HELP use `_` to explicitly ignore each field
|
|
|
|
}
|
|
|
|
match S(0, 1.0) {
|
|
|
|
S(_) => {}
|
|
|
|
//~^ ERROR this pattern has 1 field, but the corresponding tuple struct has 2 fields
|
|
|
|
//~| HELP use `_` to explicitly ignore each field
|
|
|
|
}
|
|
|
|
match S(0, 1.0) {
|
|
|
|
S() => {}
|
|
|
|
//~^ ERROR this pattern has 0 fields, but the corresponding tuple struct has 2 fields
|
|
|
|
//~| HELP use `_` to explicitly ignore each field
|
2020-12-18 22:17:09 -06:00
|
|
|
//~| HELP use `..` to ignore all fields
|
2020-12-13 16:13:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
match E::S(0, 1.0) {
|
|
|
|
E::S(x) => {}
|
|
|
|
//~^ ERROR this pattern has 1 field, but the corresponding tuple variant has 2 fields
|
|
|
|
//~| HELP use `_` to explicitly ignore each field
|
|
|
|
}
|
|
|
|
match E::S(0, 1.0) {
|
|
|
|
E::S(_) => {}
|
|
|
|
//~^ ERROR this pattern has 1 field, but the corresponding tuple variant has 2 fields
|
|
|
|
//~| HELP use `_` to explicitly ignore each field
|
|
|
|
}
|
|
|
|
match E::S(0, 1.0) {
|
|
|
|
E::S() => {}
|
|
|
|
//~^ ERROR this pattern has 0 fields, but the corresponding tuple variant has 2 fields
|
|
|
|
//~| HELP use `_` to explicitly ignore each field
|
2020-12-18 22:17:09 -06:00
|
|
|
//~| HELP use `..` to ignore all fields
|
2020-12-13 16:13:52 -06:00
|
|
|
}
|
|
|
|
match E::S(0, 1.0) {
|
|
|
|
E::S => {}
|
|
|
|
//~^ ERROR expected unit struct, unit variant or constant, found tuple variant `E::S`
|
|
|
|
//~| HELP use the tuple variant pattern syntax instead
|
|
|
|
}
|
|
|
|
}
|