Normalize main return type during mono item collection & codegen
This commit is contained in:
parent
532d3cda90
commit
f047af24b3
3 changed files with 12 additions and 3 deletions
|
@ -1270,7 +1270,10 @@ impl<'v> RootCollector<'_, 'v> {
|
|||
// late-bound regions, since late-bound
|
||||
// regions must appear in the argument
|
||||
// listing.
|
||||
let main_ret_ty = self.tcx.erase_regions(main_ret_ty.no_bound_vars().unwrap());
|
||||
let main_ret_ty = self.tcx.normalize_erasing_regions(
|
||||
ty::ParamEnv::reveal_all(),
|
||||
main_ret_ty.no_bound_vars().unwrap(),
|
||||
);
|
||||
|
||||
let start_instance = Instance::resolve(
|
||||
self.tcx,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue