@@ -1633,14 +1633,14 @@ macro_rules! nonzero_integer_signedness_dependent_methods {
1633
1633
/// Basic usage:
1634
1634
///
1635
1635
/// ```
1636
- /// #![feature(integer_sign_cast)]
1637
1636
/// # use std::num::NonZero;
1638
1637
///
1639
1638
#[ doc = concat!( "let n = NonZero::<" , stringify!( $Int) , ">::MAX;" ) ]
1640
1639
///
1641
1640
#[ doc = concat!( "assert_eq!(n.cast_signed(), NonZero::new(-1" , stringify!( $Sint) , ").unwrap());" ) ]
1642
1641
/// ```
1643
- #[ unstable( feature = "integer_sign_cast" , issue = "125882" ) ]
1642
+ #[ stable( feature = "integer_sign_cast" , since = "CURRENT_RUSTC_VERSION" ) ]
1643
+ #[ rustc_const_stable( feature = "integer_sign_cast" , since = "CURRENT_RUSTC_VERSION" ) ]
1644
1644
#[ must_use = "this returns the result of the operation, \
1645
1645
without modifying the original"]
1646
1646
#[ inline( always) ]
@@ -2072,14 +2072,14 @@ macro_rules! nonzero_integer_signedness_dependent_methods {
2072
2072
/// Basic usage:
2073
2073
///
2074
2074
/// ```
2075
- /// #![feature(integer_sign_cast)]
2076
2075
/// # use std::num::NonZero;
2077
2076
///
2078
2077
#[ doc = concat!( "let n = NonZero::new(-1" , stringify!( $Int) , ").unwrap();" ) ]
2079
2078
///
2080
2079
#[ doc = concat!( "assert_eq!(n.cast_unsigned(), NonZero::<" , stringify!( $Uint) , ">::MAX);" ) ]
2081
2080
/// ```
2082
- #[ unstable( feature = "integer_sign_cast" , issue = "125882" ) ]
2081
+ #[ stable( feature = "integer_sign_cast" , since = "CURRENT_RUSTC_VERSION" ) ]
2082
+ #[ rustc_const_stable( feature = "integer_sign_cast" , since = "CURRENT_RUSTC_VERSION" ) ]
2083
2083
#[ must_use = "this returns the result of the operation, \
2084
2084
without modifying the original"]
2085
2085
#[ inline( always) ]
0 commit comments