]> 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 1c68cacad7c99c48416022c55fad5593d7693572..18a3dc9e6defa3855ab01aa200b45accadfd7184 100644 (file)
@@ -1,12 +1,16 @@
 error[E0597]: `d1` does not live long enough
-  --> $DIR/issue-24895-copy-clone-dropck.rs:37:15
+  --> $DIR/issue-24895-copy-clone-dropck.rs:27:14
    |
-37 |     d2 = D(S(&d1, "inner"), "d2");
-   |               ^^ borrowed value does not live long enough
-38 | }
-   | - `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`.