Skip to content

Commit fc48840

Browse files
committed
rebase fun
1 parent be3c5f2 commit fc48840

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_next_trait_solver/src/solve/assembly

1 file changed

+1
-1
lines changed

compiler/rustc_next_trait_solver/src/solve/assembly/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ where
897897
match G::consider_impl_candidate(self, goal, impl_def_id) {
898898
Ok(mut candidate) => {
899899
candidate.result.value.certainty =
900-
candidate.result.value.certainty.unify_with(Certainty::AMBIGUOUS);
900+
candidate.result.value.certainty.and(Certainty::AMBIGUOUS);
901901
candidates.push(candidate);
902902
}
903903
Err(NoSolution) => (),

0 commit comments

Comments
 (0)