]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-54556-stephaneyfx.stderr
Rollup merge of #60685 - dtolnay:spdx, r=nikomatsakis
[rust.git] / src / test / 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 `std::iter::Map<Rows<'_>, [closure@$DIR/issue-54556-stephaneyfx.rs:28:14: 28:23]>`
14    |
15    = note: The temporary is part of an expression at the end of a block. Consider forcing this temporary to be dropped sooner, before the block's local variables are dropped. 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.
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0597`.