aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/find_path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir_def/src/find_path.rs')
-rw-r--r--crates/ra_hir_def/src/find_path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_def/src/find_path.rs b/crates/ra_hir_def/src/find_path.rs
index d6ae970dc..a7f59e028 100644
--- a/crates/ra_hir_def/src/find_path.rs
+++ b/crates/ra_hir_def/src/find_path.rs
@@ -2,6 +2,7 @@
2 2
3use hir_expand::name::{known, AsName, Name}; 3use hir_expand::name::{known, AsName, Name};
4use ra_prof::profile; 4use ra_prof::profile;
5use rustc_hash::FxHashSet;
5use test_utils::mark; 6use test_utils::mark;
6 7
7use crate::{ 8use crate::{
@@ -11,7 +12,6 @@ use crate::{
11 visibility::Visibility, 12 visibility::Visibility,
12 ModuleDefId, ModuleId, 13 ModuleDefId, ModuleId,
13}; 14};
14use rustc_hash::FxHashSet;
15 15
16// FIXME: handle local items 16// FIXME: handle local items
17 17