2018-06-21 13:32:52 -05:00
|
|
|
error[E0507]: cannot move out of borrowed content
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-51415.rs:6:46
|
2018-06-21 13:32:52 -05:00
|
|
|
|
|
|
|
|
LL | let opt = a.iter().enumerate().find(|(_, &s)| {
|
|
|
|
| ^-
|
|
|
|
| ||
|
|
|
|
| |hint: to prevent move, use `ref s` or `ref mut s`
|
|
|
|
| cannot move out of borrowed content
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|