We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61fc1ae commit 7218fddCopy full SHA for 7218fdd
clippy_utils/src/ast_utils.rs
@@ -724,11 +724,8 @@ pub fn eq_ty(l: &Ty, r: &Ty) -> bool {
724
(Tup(l), Tup(r)) => over(l, r, |l, r| eq_ty(l, r)),
725
(Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
726
(TraitObject(lg, ls), TraitObject(rg, rs)) => ls == rs && over(lg, rg, eq_generic_bound),
727
- (ImplTrait(_, lg, lc), ImplTrait(_, rg, rc)) => {
+ (ImplTrait(_, lg), ImplTrait(_, rg)) => {
728
over(lg, rg, eq_generic_bound)
729
- && both(lc, rc, |lc, rc| {
730
- over(lc.0.as_slice(), rc.0.as_slice(), eq_precise_capture)
731
- })
732
},
733
(Typeof(l), Typeof(r)) => eq_expr(&l.value, &r.value),
734
(MacCall(l), MacCall(r)) => eq_mac_call(l, r),
0 commit comments