2022-11-21 13:34:47 -06:00
|
|
|
error: the following explicit lifetimes could be elided: 'a
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/crashes/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
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/crashes/needless_lifetimes_impl_trait.rs:1:9
|
2020-10-09 05:45:29 -05:00
|
|
|
|
|
|
|
|
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
|
|
|
|
2023-11-21 11:08:42 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-10-09 05:45:29 -05:00
|
|
|
|