Skip to content

Commit 6e8931c

Browse files
committed
Auto merge of #3821 - g-bartoszek:redundant_closure-different-borrow-levels, r=oli-obk
do not trigger redundant_closure when there is a difference in borrow… … level between closure parameter and "self", fixes #3802
2 parents 76f9c22 + a7f4d41 commit 6e8931c

File tree

2 files changed

+22
-9
lines changed

2 files changed

+22
-9
lines changed

clippy_lints/src/eta_reduction.rs

+14-9
Original file line numberDiff line numberDiff line change
@@ -133,25 +133,30 @@ fn get_ufcs_type_name(
133133
let actual_type_of_self = &cx.tables.node_type(self_arg.hir_id).sty;
134134

135135
if let Some(trait_id) = cx.tcx.trait_of_item(method_def_id) {
136-
//if the method expectes &self, ufcs requires explicit borrowing so closure can't be removed
137-
return match (expected_type_of_self, actual_type_of_self) {
138-
(ty::Ref(_, _, _), ty::Ref(_, _, _)) => Some(cx.tcx.item_path_str(trait_id)),
139-
(l, r) => match (l, r) {
140-
(ty::Ref(_, _, _), _) | (_, ty::Ref(_, _, _)) => None,
141-
(_, _) => Some(cx.tcx.item_path_str(trait_id)),
142-
},
143-
};
136+
if match_borrow_depth(expected_type_of_self, actual_type_of_self) {
137+
return Some(cx.tcx.item_path_str(trait_id));
138+
}
144139
}
145140

146141
cx.tcx.impl_of_method(method_def_id).and_then(|_| {
147-
//a type may implicitly implement other types methods (e.g. Deref)
142+
//a type may implicitly implement other type's methods (e.g. Deref)
148143
if match_types(expected_type_of_self, actual_type_of_self) {
149144
return Some(get_type_name(cx, &actual_type_of_self));
150145
}
151146
None
152147
})
153148
}
154149

150+
fn match_borrow_depth(lhs: &ty::TyKind<'_>, rhs: &ty::TyKind<'_>) -> bool {
151+
match (lhs, rhs) {
152+
(ty::Ref(_, t1, _), ty::Ref(_, t2, _)) => match_borrow_depth(&t1.sty, &t2.sty),
153+
(l, r) => match (l, r) {
154+
(ty::Ref(_, _, _), _) | (_, ty::Ref(_, _, _)) => false,
155+
(_, _) => true,
156+
},
157+
}
158+
}
159+
155160
fn match_types(lhs: &ty::TyKind<'_>, rhs: &ty::TyKind<'_>) -> bool {
156161
match (lhs, rhs) {
157162
(ty::Bool, ty::Bool)

tests/ui/eta.rs

+8
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,14 @@ fn test_redundant_closures_containing_method_calls() {
8888
let c = Some(TestStruct { some_ref: &i })
8989
.as_ref()
9090
.map(|c| c.to_ascii_uppercase());
91+
92+
fn test_different_borrow_levels<T>(t: &[&T])
93+
where
94+
T: TestTrait,
95+
{
96+
t.iter().filter(|x| x.trait_foo_ref());
97+
t.iter().map(|x| x.trait_foo_ref());
98+
}
9199
}
92100

93101
fn meta<F>(f: F)

0 commit comments

Comments
 (0)