@@ -914,36 +914,36 @@ pub trait PointerLike {}
914914
915915/// A marker for types which can be used as types of `const` generic parameters.
916916#[ cfg_attr( not( bootstrap) , lang = "const_param_ty" ) ]
917- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
917+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
918918#[ rustc_on_unimplemented( message = "`{Self}` can't be used as a const parameter type" ) ]
919919pub trait ConstParamTy : StructuralEq { }
920- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
920+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
921921impl ConstParamTy for usize { }
922- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
922+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
923923impl ConstParamTy for u8 { }
924- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
924+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
925925impl ConstParamTy for u16 { }
926- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
926+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
927927impl ConstParamTy for u32 { }
928- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
928+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
929929impl ConstParamTy for u64 { }
930- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
930+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
931931impl ConstParamTy for u128 { }
932- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
932+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
933933impl ConstParamTy for isize { }
934- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
934+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
935935impl ConstParamTy for i8 { }
936- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
936+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
937937impl ConstParamTy for i16 { }
938- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
938+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
939939impl ConstParamTy for i32 { }
940- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
940+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
941941impl ConstParamTy for i64 { }
942- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
942+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
943943impl ConstParamTy for i128 { }
944- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
944+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
945945impl ConstParamTy for bool { }
946- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
946+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
947947impl ConstParamTy for char { }
948948
949949/// Implementations of `Copy` for primitive types.
0 commit comments