2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/pat-tuple-overfield.rs:5:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | (1, 2, 3, 4) => {}
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^ expected a tuple with 3 elements, found one with 4 elements
|
|
|
|
|
|
|
|
|
= note: expected type `({integer}, {integer}, {integer})`
|
|
|
|
found type `(_, _, _, _)`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/pat-tuple-overfield.rs:6:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | (1, 2, .., 3, 4) => {}
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ expected a tuple with 3 elements, found one with 4 elements
|
|
|
|
|
|
|
|
|
= note: expected type `({integer}, {integer}, {integer})`
|
|
|
|
found type `(_, _, _, _)`
|
|
|
|
|
|
|
|
error[E0023]: this pattern has 4 fields, but the corresponding tuple struct has 3 fields
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/pat-tuple-overfield.rs:10:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-09-04 21:04:26 -05:00
|
|
|
LL | struct S(u8, u8, u8);
|
|
|
|
| --------------------- tuple struct defined here
|
|
|
|
...
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | S(1, 2, 3, 4) => {}
|
|
|
|
| ^^^^^^^^^^^^^ expected 3 fields, found 4
|
|
|
|
|
|
|
|
error[E0023]: this pattern has 4 fields, but the corresponding tuple struct has 3 fields
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/pat-tuple-overfield.rs:12:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-09-04 21:04:26 -05:00
|
|
|
LL | struct S(u8, u8, u8);
|
|
|
|
| --------------------- tuple struct defined here
|
|
|
|
...
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | S(1, 2, .., 3, 4) => {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 3 fields, found 4
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0023, E0308.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0023`.
|