]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/access-mode-in-closures.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / access-mode-in-closures.stderr
1 error[E0507]: cannot move out of `s` which is behind a shared reference
2   --> $DIR/access-mode-in-closures.rs:8:15
3    |
4 LL |         match *s { S(v) => v }
5    |               ^^     -
6    |                      |
7    |                      data moved here
8    |                      move occurs because `v` has type `Vec<isize>`, which does not implement the `Copy` trait
9    |
10 help: consider removing the dereference here
11    |
12 LL -         match *s { S(v) => v }
13 LL +         match s { S(v) => v }
14    |
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0507`.