aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty/src/infer/path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir_ty/src/infer/path.rs')
-rw-r--r--crates/ra_hir_ty/src/infer/path.rs13
1 files changed, 12 insertions, 1 deletions
diff --git a/crates/ra_hir_ty/src/infer/path.rs b/crates/ra_hir_ty/src/infer/path.rs
index b0024c6e1..37db005ea 100644
--- a/crates/ra_hir_ty/src/infer/path.rs
+++ b/crates/ra_hir_ty/src/infer/path.rs
@@ -1,5 +1,7 @@
1//! Path expression resolution. 1//! Path expression resolution.
2 2
3use std::iter;
4
3use hir_def::{ 5use hir_def::{
4 path::{Path, PathKind, PathSegment}, 6 path::{Path, PathKind, PathSegment},
5 resolver::{ResolveValueResult, Resolver, TypeNs, ValueNs}, 7 resolver::{ResolveValueResult, Resolver, TypeNs, ValueNs},
@@ -207,7 +209,16 @@ impl<'a, D: HirDatabase> InferenceContext<'a, D> {
207 }; 209 };
208 let substs = match container { 210 let substs = match container {
209 ContainerId::ImplId(impl_id) => { 211 ContainerId::ImplId(impl_id) => {
210 method_resolution::inherent_impl_substs(self.db, impl_id, &ty) 212 let impl_substs = Substs::build_for_def(self.db, impl_id)
213 .fill(iter::repeat_with(|| self.table.new_type_var()))
214 .build();
215 let impl_self_ty = self.db.impl_self_ty(impl_id).subst(&impl_substs);
216 let substs = Substs::build_for_def(self.db, item)
217 .use_parent_substs(&impl_substs)
218 .fill_with_params()
219 .build();
220 self.unify(&impl_self_ty, &ty);
221 Some(substs)
211 } 222 }
212 ContainerId::TraitId(trait_) => { 223 ContainerId::TraitId(trait_) => {
213 // we're picking this method 224 // we're picking this method