mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
557 B
Text
19 lines
557 B
Text
error: the following explicit lifetimes could be elided: 'a
|
|
--> $DIR/needless_lifetimes_impl_trait.rs:15:12
|
|
|
|
|
LL | fn baz<'a>(&'a self) -> impl Foo + 'a {
|
|
| ^^ ^^ ^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/needless_lifetimes_impl_trait.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::needless_lifetimes)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
help: elide the lifetimes
|
|
|
|
|
LL - fn baz<'a>(&'a self) -> impl Foo + 'a {
|
|
LL + fn baz(&self) -> impl Foo + '_ {
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|