]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/issue-25199.stderr
Rollup merge of #106779 - RReverser:patch-2, r=Mark-Simulacrum
[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 container = Container::new();
5    |         --------- binding `container` declared here
6 LL |     let test = Test{test: &container};
7    |                           ^^^^^^^^^^ borrowed value does not live long enough
8 ...
9 LL | }
10    | -
11    | |
12    | `container` dropped here while still borrowed
13    | borrow might be used here, when `container` is dropped and runs the destructor for type `Container<'_>`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.