]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-40402-ref-hints/issue-40402-1.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / issues / issue-40402-ref-hints / issue-40402-1.stderr
index fbfbc0cb9777d8f272c78337495ca772512741b7..8a9d9aab81a6a3ce3c26608c0420b6e69d0559f9 100644 (file)
@@ -1,10 +1,10 @@
-error[E0507]: cannot move out of borrowed content
+error[E0507]: cannot move out of index of `std::vec::Vec<std::string::String>`
   --> $DIR/issue-40402-1.rs:9:13
    |
 LL |     let e = f.v[0];
    |             ^^^^^^
    |             |
-   |             cannot move out of borrowed content
+   |             move occurs because value has type `std::string::String`, which does not implement the `Copy` trait
    |             help: consider borrowing here: `&f.v[0]`
 
 error: aborting due to previous error