mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-20 10:55:14 +00:00
Only resolve in new solver
This commit is contained in:
parent
8838c73e86
commit
214d78daec
@ -1007,15 +1007,17 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||
&self,
|
||||
expr: &hir::Expr<'_>,
|
||||
expr_ty: Ty<'tcx>,
|
||||
target: Ty<'tcx>,
|
||||
mut target: Ty<'tcx>,
|
||||
allow_two_phase: AllowTwoPhase,
|
||||
cause: Option<ObligationCause<'tcx>>,
|
||||
) -> RelateResult<'tcx, Ty<'tcx>> {
|
||||
let source = self.try_structurally_resolve_type(expr.span, expr_ty);
|
||||
let target = self.try_structurally_resolve_type(
|
||||
cause.as_ref().map_or(expr.span, |cause| cause.span),
|
||||
target,
|
||||
);
|
||||
if self.next_trait_solver() {
|
||||
target = self.try_structurally_resolve_type(
|
||||
cause.as_ref().map_or(expr.span, |cause| cause.span),
|
||||
target,
|
||||
);
|
||||
}
|
||||
debug!("coercion::try({:?}: {:?} -> {:?})", expr, source, target);
|
||||
|
||||
let cause =
|
||||
|
Loading…
Reference in New Issue
Block a user