]> git.lizzy.rs Git - rust.git/commitdiff
Rebase conflicts
authorMichael Goulet <michael@errs.io>
Fri, 13 Jan 2023 22:12:06 +0000 (22:12 +0000)
committerMichael Goulet <michael@errs.io>
Fri, 13 Jan 2023 22:43:17 +0000 (22:43 +0000)
compiler/rustc_trait_selection/src/traits/error_reporting/suggestions.rs

index 48c32a446c521ba342360a3822dfda0e308e9e56..5211f873a1e3b845e62c6f0b26fb4d1c091685a1 100644 (file)
@@ -885,6 +885,12 @@ fn suggest_fn_call(
         err: &mut Diagnostic,
         trait_pred: ty::PolyTraitPredicate<'tcx>,
     ) -> bool {
+        // It doesn't make sense to make this suggestion outside of typeck...
+        // (also autoderef will ICE...)
+        if self.typeck_results.is_none() {
+            return false;
+        }
+
         if let ty::PredicateKind::Clause(ty::Clause::Trait(trait_pred)) = obligation.predicate.kind().skip_binder()
             && Some(trait_pred.def_id()) == self.tcx.lang_items().sized_trait()
         {
@@ -1104,13 +1110,7 @@ fn extract_callable_info(
         found: Ty<'tcx>,
     ) -> Option<(DefIdOrName, Ty<'tcx>, Vec<Ty<'tcx>>)> {
         // Autoderef is useful here because sometimes we box callables, etc.
-        let Some((def_id_or_name, output, inputs)) = Autoderef::new(
-            self,
-            param_env,
-            hir_id,
-            DUMMY_SP,
-            found,
-        ).silence_errors().find_map(|(found, _)| {
+        let Some((def_id_or_name, output, inputs)) = (self.autoderef_steps)(found).into_iter().find_map(|(found, _)| {
             match *found.kind() {
                 ty::FnPtr(fn_sig) =>
                     Some((DefIdOrName::Name("function pointer"), fn_sig.output(), fn_sig.inputs())),