]> 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 5e7be1a31012a6bf4aa73a2f47d6a7f536163209..8a9d9aab81a6a3ce3c26608c0420b6e69d0559f9 100644 (file)
@@ -1,11 +1,11 @@
-error[E0507]: cannot move out of indexed 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 indexed content
-   |             help: consider using a reference instead: `&f.v[0]`
+   |             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