2020-05-29 20:05:20 -05:00
|
|
|
error: lifetime may not live long enough
|
2022-04-19 05:56:18 -05:00
|
|
|
--> $DIR/regions-proc-bound-capture.rs:13:5
|
2020-05-29 20:05:20 -05: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`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|