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