Skip to content

Commit e6aea1a

Browse files
authoredDec 20, 2024··
Rollup merge of #134521 - adetaylor:roll-loop, r=wesleywiser
Arbitrary self types v2: roll loop. Just for slightly more concise code - no functional changes. r? `@wesleywiser` Part of #44874
2 parents ef47ba0 + 25a9d62 commit e6aea1a

File tree

1 file changed

+10
-17
lines changed
  • compiler/rustc_hir_typeck/src/method

1 file changed

+10
-17
lines changed
 

‎compiler/rustc_hir_typeck/src/method/probe.rs

+10-17
Original file line numberDiff line numberDiff line change
@@ -1229,23 +1229,16 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
12291229
if let Some(by_value_pick) = by_value_pick {
12301230
if let Ok(by_value_pick) = by_value_pick.as_ref() {
12311231
if by_value_pick.kind == PickKind::InherentImplPick {
1232-
if let Err(e) = self.check_for_shadowed_autorefd_method(
1233-
by_value_pick,
1234-
step,
1235-
self_ty,
1236-
hir::Mutability::Not,
1237-
track_unstable_candidates,
1238-
) {
1239-
return Some(Err(e));
1240-
}
1241-
if let Err(e) = self.check_for_shadowed_autorefd_method(
1242-
by_value_pick,
1243-
step,
1244-
self_ty,
1245-
hir::Mutability::Mut,
1246-
track_unstable_candidates,
1247-
) {
1248-
return Some(Err(e));
1232+
for mutbl in [hir::Mutability::Not, hir::Mutability::Mut] {
1233+
if let Err(e) = self.check_for_shadowed_autorefd_method(
1234+
by_value_pick,
1235+
step,
1236+
self_ty,
1237+
mutbl,
1238+
track_unstable_candidates,
1239+
) {
1240+
return Some(Err(e));
1241+
}
12491242
}
12501243
}
12511244
}

0 commit comments

Comments
 (0)
Please sign in to comment.