]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-64559.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-64559.stderr
index e942a1aeba38b03136c9795f13e3239679bf6c84..5b97e21b88835faddae08de6e50fa2460e2a018e 100644 (file)
@@ -2,7 +2,7 @@ error[E0382]: use of moved value: `orig`
   --> $DIR/issue-64559.rs:4:20
    |
 LL |     let orig = vec![true];
-   |         ---- move occurs because `orig` has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
+   |         ---- move occurs because `orig` has type `Vec<bool>`, which does not implement the `Copy` trait
 LL |     for _val in orig {}
    |                 ----
    |                 |