@@ -914,36 +914,36 @@ pub trait PointerLike {}
914
914
915
915
/// A marker for types which can be used as types of `const` generic parameters.
916
916
#[ 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 " ) ]
918
918
#[ rustc_on_unimplemented( message = "`{Self}` can't be used as a const parameter type" ) ]
919
919
pub trait ConstParamTy : StructuralEq { }
920
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
920
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
921
921
impl ConstParamTy for usize { }
922
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
922
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
923
923
impl ConstParamTy for u8 { }
924
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
924
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
925
925
impl ConstParamTy for u16 { }
926
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
926
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
927
927
impl ConstParamTy for u32 { }
928
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
928
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
929
929
impl ConstParamTy for u64 { }
930
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
930
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
931
931
impl ConstParamTy for u128 { }
932
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
932
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
933
933
impl ConstParamTy for isize { }
934
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
934
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
935
935
impl ConstParamTy for i8 { }
936
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
936
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
937
937
impl ConstParamTy for i16 { }
938
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
938
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
939
939
impl ConstParamTy for i32 { }
940
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
940
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
941
941
impl ConstParamTy for i64 { }
942
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
942
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
943
943
impl ConstParamTy for i128 { }
944
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
944
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
945
945
impl ConstParamTy for bool { }
946
- #[ unstable( feature = "const_param_ty_trait " , issue = "none " ) ]
946
+ #[ unstable( feature = "adt_const_params " , issue = "95174 " ) ]
947
947
impl ConstParamTy for char { }
948
948
949
949
/// Implementations of `Copy` for primitive types.
0 commit comments