diff options
author | Aleksey Kladov <[email protected]> | 2019-12-19 17:12:46 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-12-19 17:12:46 +0000 |
commit | ba12e83c26b24358e1bfbae0f913f8dfa13fc68f (patch) | |
tree | 25c92eff2ad56df99c5b53886018bf65f9dbd55f /crates/ra_hir_ty/src/infer | |
parent | 5bd8de3f5e11732d67d0cc9bacda7d3a1b7cf13a (diff) |
Add body as a possible container for items
Diffstat (limited to 'crates/ra_hir_ty/src/infer')
-rw-r--r-- | crates/ra_hir_ty/src/infer/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_ty/src/infer/path.rs b/crates/ra_hir_ty/src/infer/path.rs index 402a89386..31c90ea1e 100644 --- a/crates/ra_hir_ty/src/infer/path.rs +++ b/crates/ra_hir_ty/src/infer/path.rs | |||
@@ -237,7 +237,7 @@ impl<'a, D: HirDatabase> InferenceContext<'a, D> { | |||
237 | })); | 237 | })); |
238 | Some(substs) | 238 | Some(substs) |
239 | } | 239 | } |
240 | ContainerId::ModuleId(_) => None, | 240 | ContainerId::ModuleId(_) | ContainerId::DefWithBodyId(_) => None, |
241 | }; | 241 | }; |
242 | 242 | ||
243 | self.write_assoc_resolution(id, item.into()); | 243 | self.write_assoc_resolution(id, item.into()); |