2020-11-04 10:32:52 -06:00
|
|
|
error: `..` can only be used once per tuple pattern
|
2021-11-03 01:50:57 -05:00
|
|
|
--> $DIR/tuple_destructure_fail.rs:5:16
|
2020-11-04 10:32:52 -06:00
|
|
|
|
|
|
|
|
LL | (a, .., b, ..) = (0, 1);
|
|
|
|
| -- ^^ can only be used once per tuple pattern
|
|
|
|
| |
|
|
|
|
| previously used here
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2021-11-03 01:50:57 -05:00
|
|
|
--> $DIR/tuple_destructure_fail.rs:6:5
|
2020-11-04 10:32:52 -06:00
|
|
|
|
|
|
|
|
LL | (a, a, b) = (1, 2);
|
2021-12-15 17:16:21 -06:00
|
|
|
| ^^^^^^^^^ ------ this expression has type `({integer}, {integer})`
|
|
|
|
| |
|
|
|
|
| expected a tuple with 2 elements, found one with 3 elements
|
2020-11-04 10:32:52 -06:00
|
|
|
|
|
2022-04-17 14:00:32 -05:00
|
|
|
= note: expected tuple `({integer}, {integer})`
|
|
|
|
found tuple `(_, _, _)`
|
2020-11-04 10:32:52 -06:00
|
|
|
|
|
|
|
error[E0070]: invalid left-hand side of assignment
|
2021-11-03 01:50:57 -05:00
|
|
|
--> $DIR/tuple_destructure_fail.rs:7:13
|
2020-11-04 10:32:52 -06:00
|
|
|
|
|
|
|
|
LL | (C, ..) = (0,1);
|
|
|
|
| - ^
|
|
|
|
| |
|
|
|
|
| cannot assign to this expression
|
|
|
|
|
2020-11-11 07:15:15 -06:00
|
|
|
error[E0308]: mismatched types
|
2021-11-03 01:50:57 -05:00
|
|
|
--> $DIR/tuple_destructure_fail.rs:8:5
|
2020-11-11 07:15:15 -06:00
|
|
|
|
|
|
|
|
LL | (_,) = (1, 2);
|
2021-12-15 17:16:21 -06:00
|
|
|
| ^^^^ ------ this expression has type `({integer}, {integer})`
|
|
|
|
| |
|
|
|
|
| expected a tuple with 2 elements, found one with 1 element
|
2020-11-11 07:15:15 -06:00
|
|
|
|
|
2022-04-17 14:00:32 -05:00
|
|
|
= note: expected tuple `({integer}, {integer})`
|
|
|
|
found tuple `(_,)`
|
2020-11-11 07:15:15 -06:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2020-11-04 10:32:52 -06:00
|
|
|
|
|
|
|
Some errors have detailed explanations: E0070, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0070`.
|