]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/issue-51415.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / issue-51415.stderr
1 error[E0507]: cannot move out of a shared reference
2   --> $DIR/issue-51415.rs:6:42
3    |
4 LL |     let opt = a.iter().enumerate().find(|(_, &s)| {
5    |                                          ^^^^^-^
6    |                                               |
7    |                                               data moved here
8    |                                               move occurs because `s` has type `std::string::String`, which does not implement the `Copy` trait
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0507`.