]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-51415.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / borrowck / issue-51415.stderr
1 error[E0507]: cannot move out of a shared reference
2   --> $DIR/issue-51415.rs:7:42
3    |
4 LL |     let opt = a.iter().enumerate().find(|(_, &s)| {
5    |                                          ^^^^^-^
6    |                                               |
7    |                                               data moved here
8    |                                               move occurs because `s` has type `String`, which does not implement the `Copy` trait
9    |
10 help: consider borrowing the pattern binding
11    |
12 LL |     let opt = a.iter().enumerate().find(|(_, &ref s)| {
13    |                                               +++
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0507`.