2018-02-07 21:35:35 -06:00
|
|
|
error[E0023]: this pattern has 1 field, but the corresponding tuple variant has 2 fields
|
2021-08-18 18:13:52 -05:00
|
|
|
--> $DIR/E0023.rs:11:22
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2019-09-04 21:04:26 -05:00
|
|
|
LL | Apple(String, String),
|
2021-08-18 18:13:52 -05:00
|
|
|
| ------ ------ tuple variant has 2 fields
|
2019-09-04 21:04:26 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Fruit::Apple(a) => {},
|
2021-08-25 16:40:06 -05:00
|
|
|
| ^ expected 2 fields, found 1
|
2021-01-12 21:06:20 -06:00
|
|
|
|
|
|
|
|
help: use `_` to explicitly ignore each field
|
|
|
|
|
|
|
|
|
LL | Fruit::Apple(a, _) => {},
|
2021-06-21 21:07:19 -05:00
|
|
|
| +++
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
|
|
error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
|
2021-08-18 18:13:52 -05:00
|
|
|
--> $DIR/E0023.rs:12:22
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2019-09-04 21:04:26 -05:00
|
|
|
LL | Apple(String, String),
|
2021-08-18 18:13:52 -05:00
|
|
|
| ------ ------ tuple variant has 2 fields
|
2019-09-04 21:04:26 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Fruit::Apple(a, b, c) => {},
|
2021-08-25 16:40:06 -05:00
|
|
|
| ^ ^ ^ expected 2 fields, found 3
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
|
|
error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 1 field
|
2021-08-18 18:13:52 -05:00
|
|
|
--> $DIR/E0023.rs:13:21
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2019-09-04 21:04:26 -05:00
|
|
|
LL | Pear(u32),
|
2021-08-18 18:13:52 -05:00
|
|
|
| --- tuple variant has 1 field
|
2019-09-04 21:04:26 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Fruit::Pear(1, 2) => {},
|
2021-08-25 16:40:06 -05:00
|
|
|
| ^ ^ expected 1 field, found 2
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2019-09-19 11:42:05 -05:00
|
|
|
error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 1 field
|
2021-08-18 18:13:52 -05:00
|
|
|
--> $DIR/E0023.rs:14:23
|
2019-09-19 11:42:05 -05:00
|
|
|
|
|
|
|
|
LL | Orange((String, String)),
|
2021-08-18 18:13:52 -05:00
|
|
|
| ---------------- tuple variant has 1 field
|
2019-09-19 11:42:05 -05:00
|
|
|
...
|
|
|
|
LL | Fruit::Orange(a, b) => {},
|
2021-08-25 16:40:06 -05:00
|
|
|
| ^ ^ expected 1 field, found 2
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2020-12-18 21:56:14 -06:00
|
|
|
help: missing parentheses
|
2019-09-19 11:42:05 -05:00
|
|
|
|
|
|
|
|
LL | Fruit::Orange((a, b)) => {},
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2019-09-19 11:42:05 -05:00
|
|
|
|
2019-09-24 15:42:45 -05:00
|
|
|
error[E0023]: this pattern has 0 fields, but the corresponding tuple variant has 1 field
|
2021-08-25 16:40:06 -05:00
|
|
|
--> $DIR/E0023.rs:15:9
|
2019-09-24 15:42:45 -05:00
|
|
|
|
|
|
|
|
LL | Banana(()),
|
2021-08-18 18:13:52 -05:00
|
|
|
| -- tuple variant has 1 field
|
2019-09-24 15:42:45 -05:00
|
|
|
...
|
|
|
|
LL | Fruit::Banana() => {},
|
2021-08-25 16:40:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ expected 1 field, found 0
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2020-12-18 21:56:14 -06:00
|
|
|
help: missing parentheses
|
2019-09-24 15:42:45 -05:00
|
|
|
|
|
|
|
|
LL | Fruit::Banana(()) => {},
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2019-09-24 15:42:45 -05:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0023`.
|