]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/span/issue-24895-copy-clone-dropck.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / span / issue-24895-copy-clone-dropck.stderr
index 160bfb63900454cc091e62e6356edb0ecde5971b..18a3dc9e6defa3855ab01aa200b45accadfd7184 100644 (file)
@@ -1,12 +1,16 @@
-error: `d1` does not live long enough
-  --> $DIR/issue-24895-copy-clone-dropck.rs:38:1
+error[E0597]: `d1` does not live long enough
+  --> $DIR/issue-24895-copy-clone-dropck.rs:27:14
    |
-37 |     d2 = D(S(&d1, "inner"), "d2");
-   |               -- borrow occurs here
-38 | } //~ ERROR `d1` does not live long enough
-   | ^ `d1` dropped here while still borrowed
+LL |     d2 = D(S(&d1, "inner"), "d2");
+   |              ^^^ borrowed value does not live long enough
+LL | }
+   | -
+   | |
+   | `d1` dropped here while still borrowed
+   | borrow might be used here, when `d2` is dropped and runs the `Drop` code for type `D`
    |
-   = note: values in a scope are dropped in the opposite order they are created
+   = note: values in a scope are dropped in the opposite order they are defined
 
 error: aborting due to previous error
 
+For more information about this error, try `rustc --explain E0597`.