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