]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/issue-54556-stephaneyfx.stderr
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / ui / nll / issue-54556-stephaneyfx.stderr
1 error[E0597]: `stmt` does not live long enough
2   --> $DIR/issue-54556-stephaneyfx.rs:27:21
3    |
4 LL |     let rows = Rows(&stmt);
5    |                     ^^^^^ borrowed value does not live long enough
6 LL |     rows.map(|row| row).next()
7    |     ------------------- a temporary with access to the borrow is created here ...
8 ...
9 LL | }
10    | -
11    | |
12    | `stmt` dropped here while still borrowed
13    | ... and the borrow might be used here, when that temporary is dropped and runs the destructor for type `Map<Rows<'_>, [closure@$DIR/issue-54556-stephaneyfx.rs:28:14: 28:19]>`
14    |
15    = note: the temporary is part of an expression at the end of a block;
16            consider forcing this temporary to be dropped sooner, before the block's local variables are dropped
17 help: for example, you could save the expression's value in a new local variable `x` and then make `x` be the expression at the end of the block
18    |
19 LL |     let x = rows.map(|row| row).next(); x
20    |     +++++++                           +++
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0597`.