2022-06-22 20:19:02 +00:00
error[E0106]: missing lifetime specifier
2022-11-06 11:40:31 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:9:54
2022-06-22 20:19:02 +00:00
|
2022-11-06 11:40:31 +00:00
LL | fn g(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`
2022-06-22 20:19:02 +00:00
|
2022-11-06 11:40:31 +00:00
LL | fn g(mut x: impl Iterator<Item = &()>) -> Option<&'static ()> { x.next() }
| +++++++
2023-11-14 22:36:05 +00:00
help: consider introducing a named lifetime parameter
2023-11-14 20:36:49 +00:00
|
2023-11-14 22:36:05 +00:00
LL | fn g<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&'a ()> { x.next() }
| ++++ ~~~ ~~~
2023-11-14 22:41:45 +00:00
help: alternatively, you might want to return an owned value
2023-11-14 20:36:49 +00:00
|
LL - fn g(mut x: impl Iterator<Item = &()>) -> Option<&()> { x.next() }
LL + fn g(mut x: impl Iterator<Item = &()>) -> Option<()> { x.next() }
|
2022-06-22 20:19:02 +00:00
error[E0106]: missing lifetime specifier
2022-11-06 11:40:31 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:19:60
2022-06-22 20:19:02 +00:00
|
2022-11-06 11:40:31 +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`
2022-06-22 20:19:02 +00:00
|
2022-11-06 11:40:31 +00:00
LL | async fn i(mut x: impl Iterator<Item = &()>) -> Option<&'static ()> { x.next() }
| +++++++
2023-11-14 22:36:05 +00:00
help: consider introducing a named lifetime parameter
2023-11-14 20:36:49 +00:00
|
2023-11-14 22:36:05 +00:00
LL | async fn i<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&'a ()> { x.next() }
| ++++ ~~~ ~~~
2023-11-14 22:41:45 +00:00
help: alternatively, you might want to return an owned value
2023-11-14 20:36:49 +00:00
|
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-11-06 11:40:31 +00:00
error[E0106]: missing lifetime specifier
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:28:58
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ^^ expected named lifetime parameter
|
= 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-11-06 11:40:31 +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() }
|
2022-11-06 11:40:31 +00:00
error[E0106]: missing lifetime specifier
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:38:64
2022-11-06 11:40:31 +00:00
|
LL | async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ^^ expected named lifetime parameter
|
= 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-11-06 11:40:31 +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-11-06 11:40:31 +00:00
error[E0106]: missing lifetime specifier
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:49:37
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Foo) -> Option<&()> { x.next() }
| ^ expected named lifetime parameter
|
= 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`
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Foo) -> Option<&'static ()> { x.next() }
| +++++++
2023-11-14 22:36:05 +00:00
help: consider introducing a named lifetime parameter
2023-11-14 20:36:49 +00:00
|
2023-11-14 22:36:05 +00:00
LL | fn g<'a>(mut x: impl Foo) -> Option<&'a ()> { x.next() }
| ++++ ~~~
2023-11-14 22:41:45 +00:00
help: alternatively, you might want to return an owned value
2023-11-14 20:36:49 +00:00
|
LL - fn g(mut x: impl Foo) -> Option<&()> { x.next() }
LL + fn g(mut x: impl Foo) -> Option<()> { x.next() }
|
2022-11-06 11:40:31 +00:00
error[E0106]: missing lifetime specifier
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:60:41
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Foo<()>) -> Option<&()> { x.next() }
| ^ expected named lifetime parameter
|
= 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`
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Foo<()>) -> Option<&'static ()> { x.next() }
| +++++++
2023-11-14 22:36:05 +00:00
help: consider introducing a named lifetime parameter
2023-11-14 20:36:49 +00:00
|
2023-11-14 22:36:05 +00:00
LL | fn g<'a>(mut x: impl Foo<()>) -> Option<&'a ()> { x.next() }
| ++++ ~~~
2023-11-14 22:41:45 +00:00
help: alternatively, you might want to return an owned value
2023-11-14 20:36:49 +00:00
|
LL - fn g(mut x: impl Foo<()>) -> Option<&()> { x.next() }
LL + fn g(mut x: impl Foo<()>) -> Option<()> { x.next() }
|
2022-11-06 11:40:31 +00:00
2024-08-31 12:31:31 +00:00
warning: elided lifetime has a name
--> $DIR/impl-trait-missing-lifetime-gated.rs:66:57
|
LL | fn resolved_anonymous<'a, T: 'a>(f: impl Fn(&'a str) -> &T) {
| -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a`
|
= note: `#[warn(elided_named_lifetimes)]` on by default
2022-11-06 11:40:31 +00:00
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
--> $DIR/impl-trait-missing-lifetime-gated.rs:6:35
|
LL | fn f(_: impl Iterator<Item = &()>) {}
| ^ expected named lifetime parameter
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-11-06 11:40:31 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn f<'a>(_: impl Iterator<Item = &'a ()>) {}
| ++++ ++
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
--> $DIR/impl-trait-missing-lifetime-gated.rs:9:39
|
LL | fn g(mut x: impl Iterator<Item = &()>) -> Option<&()> { x.next() }
| ^ expected named lifetime parameter
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-11-06 11:40:31 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn g<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&()> { x.next() }
| ++++ ++
2024-02-23 11:45:44 +00:00
error: lifetime may not live long enough
--> $DIR/impl-trait-missing-lifetime-gated.rs:19:67
|
LL | async fn i(mut x: impl Iterator<Item = &()>) -> Option<&()> { x.next() }
| ----------------------------------------------------------- ^^^^^^^^ returning this value requires that `'1` must outlive `'static`
| |
| return type `impl Future<Output = Option<&'static ()>>` contains a lifetime `'1`
2022-11-06 11:40:31 +00:00
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:25:35
2022-11-06 11:40:31 +00:00
|
LL | fn f(_: impl Iterator<Item = &'_ ()>) {}
| ^^ expected named lifetime parameter
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-11-06 11:40:31 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn f<'a>(_: impl Iterator<Item = &'a ()>) {}
| ++++ ~~
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:28:39
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ^^ expected named lifetime parameter
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-11-06 11:40:31 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn g<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&'_ ()> { x.next() }
| ++++ ~~
2024-02-23 11:45:44 +00:00
error: lifetime may not live long enough
--> $DIR/impl-trait-missing-lifetime-gated.rs:38:73
|
LL | async fn i(mut x: impl Iterator<Item = &'_ ()>) -> Option<&'_ ()> { x.next() }
| ----------------------------------------------------------------- ^^^^^^^^ returning this value requires that `'1` must outlive `'static`
| |
| return type `impl Future<Output = Option<&'static ()>>` contains a lifetime `'1`
2022-11-06 11:40:31 +00:00
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:46:18
2022-11-06 11:40:31 +00:00
|
LL | fn f(_: impl Foo) {}
| ^^^ expected named lifetime parameter
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-11-06 11:40:31 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn f<'a>(_: impl Foo<'a>) {}
| ++++ ++++
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:49:22
2022-11-06 11:40:31 +00:00
|
LL | fn g(mut x: impl Foo) -> Option<&()> { x.next() }
| ^^^ expected named lifetime parameter
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-11-06 11:40:31 +00:00
help: consider introducing a named lifetime parameter
|
LL | fn g<'a>(mut x: impl Foo<'a>) -> Option<&()> { x.next() }
| ++++ ++++
2022-06-22 20:19:02 +00:00
2022-06-05 16:33:09 +00:00
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:57:22
2022-06-05 16:33:09 +00:00
|
2022-11-06 11:40:31 +00:00
LL | fn f(_: impl Foo<()>) {}
| ^ expected named lifetime parameter
2022-06-05 16:33:09 +00:00
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-09-28 04:33:52 +00:00
help: consider introducing a named lifetime parameter
|
2022-11-06 11:40:31 +00:00
LL | fn f<'a>(_: impl Foo<'a, ()>) {}
| ++++ +++
2022-06-05 16:33:09 +00:00
error[E0658]: anonymous lifetimes in `impl Trait` are unstable
2023-10-31 13:45:26 +00:00
--> $DIR/impl-trait-missing-lifetime-gated.rs:60:26
2022-06-05 16:33:09 +00:00
|
2022-11-06 11:40:31 +00:00
LL | fn g(mut x: impl Foo<()>) -> Option<&()> { x.next() }
| ^ expected named lifetime parameter
2022-06-05 16:33:09 +00:00
|
= help: add `#![feature(anonymous_lifetime_in_impl_trait)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2022-09-28 04:33:52 +00:00
help: consider introducing a named lifetime parameter
|
2022-11-06 11:40:31 +00:00
LL | fn g<'a>(mut x: impl Foo<'a, ()>) -> Option<&()> { x.next() }
| ++++ +++
2022-06-05 16:33:09 +00:00
2024-08-31 12:31:31 +00:00
error: aborting due to 16 previous errors; 1 warning emitted
2022-06-22 20:19:02 +00:00
Some errors have detailed explanations: E0106, E0658.
For more information about an error, try `rustc --explain E0106`.