1
Fork 0

Make user_provided_sigs a LocalDefIdMap.

This commit is contained in:
Camille GILLOT 2022-11-06 18:11:32 +00:00
parent 290f0781b4
commit 2c4b0b29cf
4 changed files with 10 additions and 8 deletions

View file

@ -42,8 +42,8 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
user_provided_sig = None;
} else {
let typeck_results = self.tcx().typeck(mir_def_id);
user_provided_sig = typeck_results.user_provided_sigs.get(&mir_def_id.to_def_id()).map(
|user_provided_poly_sig| {
user_provided_sig =
typeck_results.user_provided_sigs.get(&mir_def_id).map(|user_provided_poly_sig| {
// Instantiate the canonicalized variables from
// user-provided signature (e.g., the `_` in the code
// above) with fresh variables.
@ -60,8 +60,7 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
LateBoundRegionConversionTime::FnCall,
poly_sig,
)
},
);
});
}
debug!(?normalized_input_tys, ?body.local_decls);