about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-03-27 10:56:11 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-03-27 11:02:53 +0000
commit804c0476575e891aa47131d67cbb3b6c21682abf (patch)
tree216c200cdabae706eeab6cff996fb04eb34f92ee /compiler
parentb13a71a2e77f4625d1a2b8a5b9488414686ebca9 (diff)
downloadrust-804c0476575e891aa47131d67cbb3b6c21682abf.tar.gz
rust-804c0476575e891aa47131d67cbb3b6c21682abf.zip
Load missing type of impl associated constant from trait definition
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_hir_typeck/src/lib.rs18
1 files changed, 14 insertions, 4 deletions
diff --git a/compiler/rustc_hir_typeck/src/lib.rs b/compiler/rustc_hir_typeck/src/lib.rs
index 0b67b37df29..f201bfddf4b 100644
--- a/compiler/rustc_hir_typeck/src/lib.rs
+++ b/compiler/rustc_hir_typeck/src/lib.rs
@@ -192,10 +192,20 @@ fn typeck_with_fallback<'tcx>(
         check_fn(&mut fcx, fn_sig, None, decl, def_id, body, tcx.features().unsized_fn_params);
     } else {
         let expected_type = if let Some(&hir::Ty { kind: hir::TyKind::Infer, span, .. }) = body_ty {
-            Some(fcx.next_ty_var(TypeVariableOrigin {
-                kind: TypeVariableOriginKind::TypeInference,
-                span,
-            }))
+            if let Some(item) = tcx.opt_associated_item(def_id.into())
+                && let ty::AssocKind::Const = item.kind
+                && let ty::ImplContainer = item.container
+                && let Some(trait_item) = item.trait_item_def_id
+            {
+                let args =
+                    tcx.impl_trait_ref(item.container_id(tcx)).unwrap().instantiate_identity().args;
+                Some(tcx.type_of(trait_item).instantiate(tcx, args))
+            } else {
+                Some(fcx.next_ty_var(TypeVariableOrigin {
+                    kind: TypeVariableOriginKind::TypeInference,
+                    span,
+                }))
+            }
         } else if let Node::AnonConst(_) = node {
             match tcx.parent_hir_node(id) {
                 Node::Ty(&hir::Ty { kind: hir::TyKind::Typeof(ref anon_const), .. })