]> git.lizzy.rs Git - rust.git/blob - tests/ui/let-else/let-else-slicing-error.stderr
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.git] / tests / ui / let-else / let-else-slicing-error.stderr
1 error[E0529]: expected an array or slice, found `Vec<{integer}>`
2   --> $DIR/let-else-slicing-error.rs:6:9
3    |
4 LL |     let [x, y] = nums else {
5    |         ^^^^^^   ---- help: consider slicing here: `nums[..]`
6    |         |
7    |         pattern cannot match with input type `Vec<{integer}>`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0529`.