2020-05-30 01:05:20 +00:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-proc-bound-capture.rs:9:5
|
2020-05-30 01:05:20 +00:00
|
|
|
|
|
|
|
|
LL | fn static_proc(x: &isize) -> Box<dyn FnMut() -> (isize) + 'static> {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
|
|
|
LL | // This is illegal, because the region bound on `proc` is 'static.
|
|
|
|
LL | Box::new(move || { *x })
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'1` must outlive `'static`
|
2022-04-24 14:44:09 +00:00
|
|
|
|
|
|
|
|
help: consider changing the trait object's explicit `'static` bound to the lifetime of argument `x`
|
|
|
|
|
|
|
|
|
LL | fn static_proc(x: &isize) -> Box<dyn FnMut() -> (isize) + '_> {
|
|
|
|
| ~~
|
|
|
|
help: alternatively, add an explicit `'static` bound to this reference
|
|
|
|
|
|
|
|
|
LL | fn static_proc(x: &'static isize) -> Box<dyn FnMut() -> (isize) + 'static> {
|
|
|
|
| ~~~~~~~~~~~~~~
|
2020-05-30 01:05:20 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|