]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/issue-51415.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / issue-51415.stderr
index b025374257f7c97b656513b242aa994786426b55..96175b149606303567ca6bfc3bfbdee1a50995c4 100644 (file)
@@ -1,17 +1,11 @@
-error[E0507]: cannot move out of borrowed content
+error[E0507]: cannot move out of a shared reference
   --> $DIR/issue-51415.rs:6:42
    |
 LL |     let opt = a.iter().enumerate().find(|(_, &s)| {
    |                                          ^^^^^-^
-   |                                          |    |
-   |                                          |    data moved here
-   |                                          cannot move out of borrowed content
-   |
-note: move occurs because `s` has type `std::string::String`, which does not implement the `Copy` trait
-  --> $DIR/issue-51415.rs:6:47
-   |
-LL |     let opt = a.iter().enumerate().find(|(_, &s)| {
-   |                                               ^
+   |                                               |
+   |                                               data moved here
+   |                                               move occurs because `s` has type `std::string::String`, which does not implement the `Copy` trait
 
 error: aborting due to previous error