@@ -697,7 +697,7 @@ extern "rust-intrinsic" {
697
697
698
698
#[ rustc_const_stable( feature = "const_min_align_of" , since = "1.40.0" ) ]
699
699
pub fn min_align_of < T > ( ) -> usize ;
700
- #[ rustc_const_unstable( feature = "const_pref_align_of" , issue = "0 " ) ]
700
+ #[ rustc_const_unstable( feature = "const_pref_align_of" , issue = "none " ) ]
701
701
pub fn pref_align_of < T > ( ) -> usize ;
702
702
703
703
/// The size of the referenced value in bytes.
@@ -708,13 +708,13 @@ extern "rust-intrinsic" {
708
708
pub fn min_align_of_val < T : ?Sized > ( _: & T ) -> usize ;
709
709
710
710
/// Gets a static string slice containing the name of a type.
711
- #[ rustc_const_unstable( feature = "const_type_name" , issue = "0 " ) ]
711
+ #[ rustc_const_unstable( feature = "const_type_name" , issue = "none " ) ]
712
712
pub fn type_name < T : ?Sized > ( ) -> & ' static str ;
713
713
714
714
/// Gets an identifier which is globally unique to the specified type. This
715
715
/// function will return the same value for a type regardless of whichever
716
716
/// crate it is invoked in.
717
- #[ rustc_const_unstable( feature = "const_type_id" , issue = "0 " ) ]
717
+ #[ rustc_const_unstable( feature = "const_type_id" , issue = "none " ) ]
718
718
pub fn type_id < T : ?Sized + ' static > ( ) -> u64 ;
719
719
720
720
/// A guard for unsafe functions that cannot ever be executed if `T` is uninhabited:
@@ -1222,7 +1222,7 @@ extern "rust-intrinsic" {
1222
1222
/// let num_leading = unsafe { ctlz_nonzero(x) };
1223
1223
/// assert_eq!(num_leading, 3);
1224
1224
/// ```
1225
- #[ rustc_const_unstable( feature = "constctlz" , issue = "0 " ) ]
1225
+ #[ rustc_const_unstable( feature = "constctlz" , issue = "none " ) ]
1226
1226
pub fn ctlz_nonzero < T > ( x : T ) -> T ;
1227
1227
1228
1228
/// Returns the number of trailing unset bits (zeroes) in an integer type `T`.
@@ -1267,7 +1267,7 @@ extern "rust-intrinsic" {
1267
1267
/// let num_trailing = unsafe { cttz_nonzero(x) };
1268
1268
/// assert_eq!(num_trailing, 3);
1269
1269
/// ```
1270
- #[ rustc_const_unstable( feature = "const_cttz" , issue = "0 " ) ]
1270
+ #[ rustc_const_unstable( feature = "const_cttz" , issue = "none " ) ]
1271
1271
pub fn cttz_nonzero < T > ( x : T ) -> T ;
1272
1272
1273
1273
/// Reverses the bytes in an integer type `T`.
@@ -1396,7 +1396,7 @@ extern "rust-intrinsic" {
1396
1396
pub fn nontemporal_store < T > ( ptr : * mut T , val : T ) ;
1397
1397
1398
1398
/// See documentation of `<*const T>::offset_from` for details.
1399
- #[ rustc_const_unstable( feature = "const_ptr_offset_from" , issue = "0 " ) ]
1399
+ #[ rustc_const_unstable( feature = "const_ptr_offset_from" , issue = "none " ) ]
1400
1400
pub fn ptr_offset_from < T > ( ptr : * const T , base : * const T ) -> isize ;
1401
1401
1402
1402
/// Internal hook used by Miri to implement unwinding.
0 commit comments