]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/issue-25199.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / span / issue-25199.stderr
1 error[E0597]: `container` does not live long enough
2   --> $DIR/issue-25199.rs:70:27
3    |
4 LL |     let test = Test{test: &container};
5    |                           ^^^^^^^^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | -
9    | |
10    | `container` dropped here while still borrowed
11    | borrow might be used here, when `container` is dropped and runs the destructor for type `Container<'_>`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0597`.