]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/issue-24805-dropck-child-has-items-via-parent.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / span / issue-24805-dropck-child-has-items-via-parent.stderr
1 error[E0597]: `d1` does not live long enough
2   --> $DIR/issue-24805-dropck-child-has-items-via-parent.rs:28:18
3    |
4 LL |     _d = D_Child(&d1);
5    |                  ^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | -
9    | |
10    | `d1` dropped here while still borrowed
11    | borrow might be used here, when `_d` is dropped and runs the `Drop` code for type `D_Child`
12    |
13    = note: values in a scope are dropped in the opposite order they are defined
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.