Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/generics.rs')
-rw-r--r--crates/hir-def/src/generics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-def/src/generics.rs b/crates/hir-def/src/generics.rs
index fe9004fcc6..1d880c9eee 100644
--- a/crates/hir-def/src/generics.rs
+++ b/crates/hir-def/src/generics.rs
@@ -160,7 +160,7 @@ pub enum GenericParamDataRef<'a> {
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct GenericParams {
type_or_consts: Arena<TypeOrConstParamData>,
- pub lifetimes: Arena<LifetimeParamData>,
+ lifetimes: Arena<LifetimeParamData>,
where_predicates: Box<[WherePredicate]>,
}