mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
463 B
Plaintext
14 lines
463 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/issue-48238.rs:9:13
|
|
|
|
|
LL | move || use_val(&orig);
|
|
| ------- ^^^^^^^^^^^^^^ returning this value requires that `'1` must outlive `'2`
|
|
| | |
|
|
| | return type of closure is &'2 u8
|
|
| lifetime `'1` represents this closure's body
|
|
|
|
|
= note: closure implements `Fn`, so references to captured variables can't escape the closure
|
|
|
|
error: aborting due to 1 previous error
|
|
|