File tree 1 file changed +4
-2
lines changed
compiler/rustc_middle/src/ty
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -694,23 +694,25 @@ impl<'tcx> Instance<'tcx> {
694
694
}
695
695
696
696
#[ inline( always) ]
697
+ // Keep me in sync with try_instantiate_mir_and_normalize_erasing_regions
697
698
pub fn instantiate_mir_and_normalize_erasing_regions < T > (
698
699
& self ,
699
700
tcx : TyCtxt < ' tcx > ,
700
701
param_env : ty:: ParamEnv < ' tcx > ,
701
702
v : EarlyBinder < T > ,
702
703
) -> T
703
704
where
704
- T : TypeFoldable < TyCtxt < ' tcx > > + Clone ,
705
+ T : TypeFoldable < TyCtxt < ' tcx > > ,
705
706
{
706
707
if let Some ( args) = self . args_for_mir_body ( ) {
707
708
tcx. instantiate_and_normalize_erasing_regions ( args, param_env, v)
708
709
} else {
709
- tcx. normalize_erasing_regions ( param_env, v. skip_binder ( ) )
710
+ tcx. normalize_erasing_regions ( param_env, v. instantiate_identity ( ) )
710
711
}
711
712
}
712
713
713
714
#[ inline( always) ]
715
+ // Keep me in sync with instantiate_mir_and_normalize_erasing_regions
714
716
pub fn try_instantiate_mir_and_normalize_erasing_regions < T > (
715
717
& self ,
716
718
tcx : TyCtxt < ' tcx > ,
You can’t perform that action at this time.
0 commit comments