]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/issue-54382-use-span-of-tail-of-block.stderr
Link to the LLVM issue from a comment on `SpecOptionPartialEq`
[rust.git] / tests / ui / nll / issue-54382-use-span-of-tail-of-block.stderr
1 error[E0597]: `_thing1` does not live long enough
2   --> $DIR/issue-54382-use-span-of-tail-of-block.rs:7:29
3    |
4 LL |             D("other").next(&_thing1)
5    |             ----------------^^^^^^^^-
6    |             |               |
7    |             |               borrowed value does not live long enough
8    |             a temporary with access to the borrow is created here ...
9 ...
10 LL |     }
11    |     - `_thing1` dropped here while still borrowed
12 LL |
13 LL |     ;
14    |     - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
15    |
16 help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
17    |
18 LL |             D("other").next(&_thing1);
19    |                                      +
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0597`.