2020-01-30 19:53:47 +00:00
error[E0106]: missing lifetime specifier
2022-06-05 16:33:09 +00:00
--> $DIR/impl-trait-missing-lifetime.rs:9:54
2020-01-30 19:53:47 +00:00
|
2022-06-05 16:33:09 +00:00
LL | fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ^^ expected named lifetime parameter
2020-01-30 19:53:47 +00:00
|
2022-06-05 16:33:09 +00:00
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
2023-11-14 20:36:49 +00:00
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
2020-01-30 19:53:47 +00:00
|
2022-06-05 16:33:09 +00:00
LL | fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'static ()> { x.next() }
| ~~~~~~~
2023-11-15 16:56:41 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn g<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&'a ()> { x.next() }
| ++++ ~~~ ~~~
2023-11-15 18:00:43 +00:00
help: alternatively, you might want to return an owned value
|
LL - fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
LL + fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<()> { x.next() }
|
2020-01-30 19:53:47 +00:00
2022-06-22 20:19:02 +00:00
error[E0106]: missing lifetime specifier
2024-02-01 22:45:00 +00:00
--> $DIR/impl-trait-missing-lifetime.rs:17:60
2022-06-22 20:19:02 +00:00
|
2022-06-05 16:33:09 +00:00
LL | async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ^^ expected named lifetime parameter
2022-06-22 20:19:02 +00:00
|
2022-06-05 16:33:09 +00:00
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
2023-11-14 20:36:49 +00:00
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
2022-06-22 20:19:02 +00:00
|
2022-06-05 16:33:09 +00:00
LL | async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'static ()> { x.next() }
| ~~~~~~~
2023-11-15 16:56:41 +00:00
help: consider introducing a named lifetime parameter
|
LL | async fn i<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&'a ()> { x.next() }
| ++++ ~~~ ~~~
2023-11-15 18:00:43 +00:00
help: alternatively, you might want to return an owned value
|
LL - async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
LL + async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<()> { x.next() }
|
2022-06-22 20:19:02 +00:00
2022-06-05 16:33:09 +00:00
error: lifetime may not live long enough
2024-02-01 22:45:00 +00:00
--> $DIR/impl-trait-missing-lifetime.rs:17:69
2022-06-05 16:33:09 +00:00
|
LL | async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
2023-10-02 21:31:46 +00:00
| ----------------------------------------------------------------- ^^^^^^^^ returning this value requires that `'1` must outlive `'static`
| |
| return type `impl Future<Output = Option<&'static ()>>` contains a lifetime `'1`
2022-06-05 16:33:09 +00:00
2024-02-01 22:45:00 +00:00
error: lifetime may not live long enough
--> $DIR/impl-trait-missing-lifetime.rs:9:63
|
LL | fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ----- has type `x` ^^^^^^^^ returning this value requires that `'1` must outlive `'static`
error: aborting due to 4 previous errors
2020-01-30 19:53:47 +00:00
For more information about this error, try `rustc --explain E0106`.