Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/path.rs')
| -rw-r--r-- | crates/hir-def/src/path.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/hir-def/src/path.rs b/crates/hir-def/src/path.rs index c67c29818f..8cd287f7f3 100644 --- a/crates/hir-def/src/path.rs +++ b/crates/hir-def/src/path.rs @@ -9,14 +9,12 @@ use std::{ use crate::{ body::LowerCtx, lang_item::LangItemTarget, - type_ref::{ConstRefOrPath, LifetimeRef}, + type_ref::{ConstRefOrPath, LifetimeRef, TypeBound, TypeRef}, }; use hir_expand::name::Name; use intern::Interned; use syntax::ast; -use crate::type_ref::{TypeBound, TypeRef}; - pub use hir_expand::mod_path::{path, ModPath, PathKind}; #[derive(Debug, Clone, PartialEq, Eq)] |