2021-11-12 23:43:43 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-05-21 14:26:58 -05:00
|
|
|
--> $DIR/generator-region-requirements.rs:17:51
|
2021-11-12 23:43:43 -06:00
|
|
|
|
|
|
|
|
LL | fn dangle(x: &mut i32) -> &'static mut i32 {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
|
|
|
...
|
|
|
|
LL | GeneratorState::Complete(c) => return c,
|
|
|
|
| ^ returning this value requires that `'1` must outlive `'static`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|