Match on both reveal and solver mode at the same time
This commit is contained in:
parent
980da667fe
commit
dd98198972
1 changed files with 38 additions and 41 deletions
|
@ -15,9 +15,8 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
|
|||
let opaque_ty = goal.predicate.projection_ty;
|
||||
let expected = goal.predicate.term.ty().expect("no such thing as an opaque const");
|
||||
|
||||
match goal.param_env.reveal() {
|
||||
Reveal::UserFacing => match self.solver_mode() {
|
||||
SolverMode::Normal => {
|
||||
match (goal.param_env.reveal(), self.solver_mode()) {
|
||||
(Reveal::UserFacing, SolverMode::Normal) => {
|
||||
let Some(opaque_ty_def_id) = opaque_ty.def_id.as_local() else {
|
||||
return Err(NoSolution);
|
||||
};
|
||||
|
@ -42,8 +41,7 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
|
|||
Ok(()) => {}
|
||||
}
|
||||
// Prefer opaques registered already.
|
||||
let matches =
|
||||
self.unify_existing_opaque_tys(goal.param_env, opaque_ty, expected);
|
||||
let matches = self.unify_existing_opaque_tys(goal.param_env, opaque_ty, expected);
|
||||
if !matches.is_empty() {
|
||||
if let Some(response) = self.try_merge_responses(&matches) {
|
||||
return Ok(response);
|
||||
|
@ -55,11 +53,10 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
|
|||
self.register_opaque_ty(opaque_ty, expected, goal.param_env)?;
|
||||
self.evaluate_added_goals_and_make_canonical_response(Certainty::Yes)
|
||||
}
|
||||
SolverMode::Coherence => {
|
||||
(Reveal::UserFacing, SolverMode::Coherence) => {
|
||||
self.evaluate_added_goals_and_make_canonical_response(Certainty::AMBIGUOUS)
|
||||
}
|
||||
},
|
||||
Reveal::All => {
|
||||
(Reveal::All, _) => {
|
||||
// FIXME: Add an assertion that opaque type storage is empty.
|
||||
let actual = tcx.type_of(opaque_ty.def_id).subst(tcx, opaque_ty.substs);
|
||||
self.eq(goal.param_env, expected, actual)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue