mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
unreachable pub
This commit is contained in:
parent
c4b3075be0
commit
f8b130a6aa
1 changed files with 3 additions and 3 deletions
|
@ -144,9 +144,9 @@ pub enum WherePredicateTypeTarget {
|
||||||
|
|
||||||
#[derive(Clone, Default)]
|
#[derive(Clone, Default)]
|
||||||
pub(crate) struct GenericParamsCollector {
|
pub(crate) struct GenericParamsCollector {
|
||||||
pub type_or_consts: Arena<TypeOrConstParamData>,
|
pub(crate) type_or_consts: Arena<TypeOrConstParamData>,
|
||||||
pub lifetimes: Arena<LifetimeParamData>,
|
lifetimes: Arena<LifetimeParamData>,
|
||||||
pub where_predicates: Vec<WherePredicate>,
|
where_predicates: Vec<WherePredicate>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GenericParamsCollector {
|
impl GenericParamsCollector {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue