Skip to content

Commit a467c51

Browse files
committed
Auto merge of rust-lang#78779 - LeSeulArtichaut:ty-visitor-return, r=oli-obk
Introduce `TypeVisitor::BreakTy` Implements MCP rust-lang/compiler-team#383. r? `@ghost` cc `@lcnr` `@oli-obk` ~~Blocked on FCP in rust-lang/compiler-team#383.~~
2 parents 3567ea5 + 1b55cc7 commit a467c51

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clippy_lints/src/redundant_clone.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,9 @@ impl<'a, 'tcx> mir::visit::Visitor<'tcx> for PossibleBorrowerVisitor<'a, 'tcx> {
563563
struct ContainsRegion;
564564

565565
impl TypeVisitor<'_> for ContainsRegion {
566-
fn visit_region(&mut self, _: ty::Region<'_>) -> ControlFlow<()> {
566+
type BreakTy = ();
567+
568+
fn visit_region(&mut self, _: ty::Region<'_>) -> ControlFlow<Self::BreakTy> {
567569
ControlFlow::BREAK
568570
}
569571
}

0 commit comments

Comments
 (0)