]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/use/use-after-move-based-on-type.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / use / use-after-move-based-on-type.stderr
index 520f88f55dc1a3bb7df012ee2a0036c4d78f6314..11ce005bb457c861e50921de05d2be07185e9c82 100644 (file)
@@ -2,7 +2,7 @@ error[E0382]: borrow of moved value: `x`
   --> $DIR/use-after-move-based-on-type.rs:4:20
    |
 LL |     let x = "Hello!".to_string();
-   |         - move occurs because `x` has type `std::string::String`, which does not implement the `Copy` trait
+   |         - move occurs because `x` has type `String`, which does not implement the `Copy` trait
 LL |     let _y = x;
    |              - value moved here
 LL |     println!("{}", x);