Skip to content

Commit 56fb8a4

Browse files
author
Jonas Schievink
committed
Reorder imports
1 parent 0fcbc71 commit 56fb8a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/ra_hir_def/src/item_scope.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
//! Describes items defined or visible (ie, imported) in a certain scope.
22
//! This is shared between modules and blocks.
33
4+
use std::collections::hash_map::Entry;
5+
46
use hir_expand::name::Name;
57
use once_cell::sync::Lazy;
68
use ra_db::CrateId;
@@ -11,7 +13,6 @@ use crate::{
1113
db::DefDatabase, per_ns::PerNs, visibility::Visibility, AdtId, BuiltinType, HasModule, ImplId,
1214
LocalModuleId, Lookup, MacroDefId, ModuleDefId, TraitId,
1315
};
14-
use std::collections::hash_map::Entry;
1516

1617
#[derive(Copy, Clone)]
1718
pub(crate) enum ImportType {

0 commit comments

Comments
 (0)