Auto merge of #77118 - exrook:stability-generic-parameters-2, r=varkor
Stability annotations on generic parameters (take 2.5) Rebase of #72314 + more tests Implements rust-lang/wg-allocators#2.
This commit is contained in:
commit
d902752866
9 changed files with 1171 additions and 34 deletions
|
@ -1822,6 +1822,9 @@ impl EncodeContext<'a, 'tcx> {
|
|||
EntryKind::TypeParam,
|
||||
default.is_some(),
|
||||
);
|
||||
if default.is_some() {
|
||||
self.encode_stability(def_id.to_def_id());
|
||||
}
|
||||
}
|
||||
GenericParamKind::Const { .. } => {
|
||||
self.encode_info_for_generic_param(
|
||||
|
@ -1829,6 +1832,7 @@ impl EncodeContext<'a, 'tcx> {
|
|||
EntryKind::ConstParam,
|
||||
true,
|
||||
);
|
||||
// FIXME(const_generics:defaults)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue