We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c0d27 commit 50b8029Copy full SHA for 50b8029
compiler/rustc_trait_selection/src/solve/fulfill.rs
@@ -465,13 +465,7 @@ impl<'tcx> ProofTreeVisitor<'tcx> for BestObligation<'tcx> {
465
polarity: ty::PredicatePolarity::Positive,
466
}))
467
}
468
- ty::PredicateKind::Clause(
469
- ty::ClauseKind::WellFormed(_) | ty::ClauseKind::Projection(..),
470
- )
471
- | ty::PredicateKind::AliasRelate(..) => ChildMode::PassThrough,
472
- _ => {
473
- return ControlFlow::Break(self.obligation.clone());
474
- }
+ _ => ChildMode::PassThrough,
475
};
476
477
let mut impl_where_bound_count = 0;
0 commit comments