diff options
| author | Kyle Matsuda <kyle.yoshio.matsuda@gmail.com> | 2023-01-18 15:43:20 -0700 |
|---|---|---|
| committer | Kyle Matsuda <kyle.yoshio.matsuda@gmail.com> | 2023-01-26 20:15:36 -0700 |
| commit | e982971ff22fa190369b5f536403c37c52b10a26 (patch) | |
| tree | 3b5002c6057b31c2c2d300a7ebf1bf48d22de281 /compiler/rustc_monomorphize/src | |
| parent | d7948c843de94245c794e8c63dd4301a78bb5ba3 (diff) | |
replace usages of fn_sig query with bound_fn_sig
Diffstat (limited to 'compiler/rustc_monomorphize/src')
| -rw-r--r-- | compiler/rustc_monomorphize/src/collector.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_monomorphize/src/collector.rs b/compiler/rustc_monomorphize/src/collector.rs index ec1de305687..9311d96bc7e 100644 --- a/compiler/rustc_monomorphize/src/collector.rs +++ b/compiler/rustc_monomorphize/src/collector.rs @@ -1296,7 +1296,7 @@ impl<'v> RootCollector<'_, 'v> { }; let start_def_id = self.tcx.require_lang_item(LangItem::Start, None); - let main_ret_ty = self.tcx.fn_sig(main_def_id).output(); + let main_ret_ty = self.tcx.bound_fn_sig(main_def_id).subst_identity().output(); // Given that `main()` has no arguments, // then its return type cannot have |
