Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/expr_store/path.rs')
| -rw-r--r-- | crates/hir-def/src/expr_store/path.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir-def/src/expr_store/path.rs b/crates/hir-def/src/expr_store/path.rs index ed74c4cc3c..db83e73a0b 100644 --- a/crates/hir-def/src/expr_store/path.rs +++ b/crates/hir-def/src/expr_store/path.rs @@ -4,7 +4,7 @@ use std::iter; use crate::{ lang_item::LangItemTarget, - type_ref::{ConstRef, LifetimeRef, TypeBound, TypeRefId}, + type_ref::{ConstRef, LifetimeRefId, TypeBound, TypeRefId}, }; use hir_expand::{ mod_path::{ModPath, PathKind}, @@ -91,7 +91,7 @@ pub struct AssociatedTypeBinding { #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum GenericArg { Type(TypeRefId), - Lifetime(LifetimeRef), + Lifetime(LifetimeRefId), Const(ConstRef), } |