diff options
-rw-r--r-- | crates/ra_hir/src/module_tree.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/module_tree.rs b/crates/ra_hir/src/module_tree.rs index 7caebab0d..893c375b5 100644 --- a/crates/ra_hir/src/module_tree.rs +++ b/crates/ra_hir/src/module_tree.rs | |||
@@ -192,7 +192,7 @@ impl ModuleTree { | |||
192 | }); | 192 | }); |
193 | 193 | ||
194 | let (points_to, problem) = if sub.is_declaration { | 194 | let (points_to, problem) = if sub.is_declaration { |
195 | let (points_to, problem) = resolve_submodule(db, file_id, &sub.name); | 195 | let (points_to, problem) = resolve_submodule(db, file_id, &sub.name, is_root); |
196 | let points_to = points_to | 196 | let points_to = points_to |
197 | .into_iter() | 197 | .into_iter() |
198 | .map(|file_id| { | 198 | .map(|file_id| { |