You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: the following explicit lifetimes could be elided: 'a
--> src/expand.rs:445:10
|
445 | impl<'a> VisitMut for AssociatedTypeImplTraits<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
= note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
= help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
help: elide the lifetimes
|
445 - impl<'a> VisitMut for AssociatedTypeImplTraits<'a> {
445 + impl VisitMut for AssociatedTypeImplTraits<'_> {
|
warning: the following explicit lifetimes could be elided: 'a
--> tests/test.rs:1432:10
|
1432 | impl<'a> Drop for IncrementOnDrop<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
= note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
= help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
help: elide the lifetimes
|
1432 - impl<'a> Drop for IncrementOnDrop<'a> {
1432 + impl Drop for IncrementOnDrop<'_> {
|
0 commit comments