Change InferCtxtBuilder from enter to build
This commit is contained in:
parent
91269fa5b8
commit
283abbf0e7
53 changed files with 1966 additions and 2182 deletions
|
@ -134,19 +134,17 @@ fn resolve_associated_item<'tcx>(
|
|||
.unwrap_or_else(|| {
|
||||
bug!("{:?} not found in {:?}", trait_item_id, impl_data.impl_def_id);
|
||||
});
|
||||
|
||||
let substs = tcx.infer_ctxt().enter(|infcx| {
|
||||
let param_env = param_env.with_reveal_all_normalized(tcx);
|
||||
let substs = rcvr_substs.rebase_onto(tcx, trait_def_id, impl_data.substs);
|
||||
let substs = translate_substs(
|
||||
&infcx,
|
||||
param_env,
|
||||
impl_data.impl_def_id,
|
||||
substs,
|
||||
leaf_def.defining_node,
|
||||
);
|
||||
infcx.tcx.erase_regions(substs)
|
||||
});
|
||||
let infcx = tcx.infer_ctxt().build();
|
||||
let param_env = param_env.with_reveal_all_normalized(tcx);
|
||||
let substs = rcvr_substs.rebase_onto(tcx, trait_def_id, impl_data.substs);
|
||||
let substs = translate_substs(
|
||||
&infcx,
|
||||
param_env,
|
||||
impl_data.impl_def_id,
|
||||
substs,
|
||||
leaf_def.defining_node,
|
||||
);
|
||||
let substs = infcx.tcx.erase_regions(substs);
|
||||
|
||||
// Since this is a trait item, we need to see if the item is either a trait default item
|
||||
// or a specialization because we can't resolve those unless we can `Reveal::All`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue