2020-11-07 14:28:55 +00:00
|
|
|
error: `..` can only be used once per slice pattern
|
2023-06-21 18:01:31 +00:00
|
|
|
--> $DIR/slice_destructure_fail.rs:3:16
|
2020-11-07 14:28:55 +00:00
|
|
|
|
|
2023-06-21 18:01:31 +00:00
|
|
|
LL | [a, .., b, ..] = [0, 1];
|
|
|
|
| -- ^^ can only be used once per slice pattern
|
|
|
|
| |
|
|
|
|
| previously used here
|
|
|
|
|
2020-11-07 14:28:55 +00:00
|
|
|
error[E0527]: pattern requires 3 elements but array has 2
|
2023-06-21 18:01:31 +00:00
|
|
|
--> $DIR/slice_destructure_fail.rs:4:5
|
|
|
|
|
|
|
|
|
LL | [a, a, b] = [1, 2];
|
|
|
|
| ^^^^^^^^^ expected 2 elements
|
|
|
|
|
2020-11-11 13:15:15 +00:00
|
|
|
error[E0527]: pattern requires 1 element but array has 2
|
2023-07-17 21:58:37 +00:00
|
|
|
--> $DIR/slice_destructure_fail.rs:6:5
|
2020-11-11 13:15:15 +00:00
|
|
|
|
|
2023-06-21 18:01:31 +00:00
|
|
|
LL | [_] = [1, 2];
|
|
|
|
| ^^^ expected 2 elements
|
2020-11-11 13:15:15 +00:00
|
|
|
|
2023-07-17 21:58:37 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2020-11-07 14:28:55 +00:00
|
|
|
|
2023-07-17 21:58:37 +00:00
|
|
|
For more information about this error, try `rustc --explain E0527`.
|