2018-10-12 09:16:29 -05:00
|
|
|
error[E0621]: explicit lifetime required in the type of `x`
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/generator-region-requirements.rs:12:51
|
2018-10-12 09:16:29 -05:00
|
|
|
|
|
|
|
|
LL | fn dangle(x: &mut i32) -> &'static mut i32 {
|
|
|
|
| -------- help: add explicit lifetime `'static` to the type of `x`: `&'static mut i32`
|
|
|
|
...
|
2018-10-14 09:12:02 -05:00
|
|
|
LL | GeneratorState::Complete(c) => return c,
|
|
|
|
| ^ lifetime `'static` required
|
2018-10-12 09:16:29 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0621`.
|