aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/find_path.rs
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2020-06-05 12:15:16 +0100
committerJonas Schievink <[email protected]>2020-06-05 12:15:16 +0100
commit8395396782e343c6fe6bd318c74e8c9884b22323 (patch)
treeec894453671cca713083ec0e898ac22375542bd0 /crates/ra_hir_def/src/find_path.rs
parent5f23f8ca449e456087d0657f925837bfb1a3f5ec (diff)
Reorder imports
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