blob: eca5c3301801f0d95d76b25b480b781e2bb656e1 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0527]: pattern requires 2 elements but array has 8
--> $DIR/slice_pattern_syntax_problem0.rs:11:9
|
LL | let [first_three @ ..3, rest @ 2..] = xs;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 8 elements
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0527`.
|