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