Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/nameres/attr_resolution.rs')
-rw-r--r--crates/hir-def/src/nameres/attr_resolution.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/hir-def/src/nameres/attr_resolution.rs b/crates/hir-def/src/nameres/attr_resolution.rs
index c35a7fdc96..7820c6fcbe 100644
--- a/crates/hir-def/src/nameres/attr_resolution.rs
+++ b/crates/hir-def/src/nameres/attr_resolution.rs
@@ -2,20 +2,20 @@
use base_db::Crate;
use hir_expand::{
+ MacroCallId, MacroCallKind, MacroDefId,
attrs::{Attr, AttrId, AttrInput},
inert_attr_macro::find_builtin_attr_idx,
- MacroCallId, MacroCallKind, MacroDefId,
};
use span::SyntaxContext;
use syntax::ast;
use triomphe::Arc;
use crate::{
+ AstIdWithPath, LocalModuleId, MacroId, UnresolvedMacro,
db::DefDatabase,
item_scope::BuiltinShadowMode,
- nameres::{path_resolution::ResolveMode, LocalDefMap},
+ nameres::{LocalDefMap, path_resolution::ResolveMode},
path::{self, ModPath, PathKind},
- AstIdWithPath, LocalModuleId, MacroId, UnresolvedMacro,
};
use super::{DefMap, MacroSubNs};