rust/tests/ui/coroutine/coroutine-region-requirements.migrate.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
526 B
Plaintext
Raw Normal View History

2018-10-12 09:16:29 -05:00
error[E0621]: explicit lifetime required in the type of `x`
2018-10-04 13:49:38 -05:00
--> $DIR/generator-region-requirements.rs:16: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`
...
LL | GeneratorState::Complete(c) => return c,
| ^ lifetime `'static` required
2023-11-21 13:26:31 -06:00
error: aborting due to 1 previous error
2018-10-12 09:16:29 -05:00
For more information about this error, try `rustc --explain E0621`.