2022-10-28 17:18:07 +00:00
|
|
|
error: the following explicit lifetimes could be elided: 'a
|
2023-06-13 19:05:22 +00:00
|
|
|
--> $DIR/needless_lifetimes_impl_trait.rs:15:12
|
2020-09-08 00:39:39 +00:00
|
|
|
|
|
|
|
|
LL | fn baz<'a>(&'a self) -> impl Foo + 'a {
|
2023-06-13 19:05:22 +00:00
|
|
|
| ^^ ^^ ^^
|
2020-09-08 00:39:39 +00:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2020-09-29 21:06:08 +00:00
|
|
|
--> $DIR/needless_lifetimes_impl_trait.rs:1:9
|
2020-09-08 00:39:39 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::needless_lifetimes)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-01-31 14:12:03 +00:00
|
|
|
help: elide the lifetimes
|
|
|
|
|
|
|
|
|
LL - fn baz<'a>(&'a self) -> impl Foo + 'a {
|
|
|
|
LL + fn baz(&self) -> impl Foo + '_ {
|
|
|
|
|
|
2020-09-08 00:39:39 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|