@@ -1152,7 +1152,7 @@ macro_rules! nonzero_min_max_unsigned {
1152
1152
#[ doc = concat!( "# use std::num::" , stringify!( $Ty) , ";" ) ]
1153
1153
#[ doc = concat!( "assert_eq!(" , stringify!( $Ty) , "::MIN.get(), 1" , stringify!( $Int) , ");" ) ]
1154
1154
/// ```
1155
- #[ unstable ( feature = "nonzero_min_max" , issue = "89065 " ) ]
1155
+ #[ stable ( feature = "nonzero_min_max" , since = "CURRENT_RUSTC_VERSION " ) ]
1156
1156
pub const MIN : Self = Self :: new( 1 ) . unwrap( ) ;
1157
1157
1158
1158
/// The largest value that can be represented by this non-zero
@@ -1167,7 +1167,7 @@ macro_rules! nonzero_min_max_unsigned {
1167
1167
#[ doc = concat!( "# use std::num::" , stringify!( $Ty) , ";" ) ]
1168
1168
#[ doc = concat!( "assert_eq!(" , stringify!( $Ty) , "::MAX.get(), " , stringify!( $Int) , "::MAX);" ) ]
1169
1169
/// ```
1170
- #[ unstable ( feature = "nonzero_min_max" , issue = "89065 " ) ]
1170
+ #[ stable ( feature = "nonzero_min_max" , since = "CURRENT_RUSTC_VERSION " ) ]
1171
1171
pub const MAX : Self = Self :: new( <$Int>:: MAX ) . unwrap( ) ;
1172
1172
}
1173
1173
) +
@@ -1194,7 +1194,7 @@ macro_rules! nonzero_min_max_signed {
1194
1194
#[ doc = concat!( "# use std::num::" , stringify!( $Ty) , ";" ) ]
1195
1195
#[ doc = concat!( "assert_eq!(" , stringify!( $Ty) , "::MIN.get(), " , stringify!( $Int) , "::MIN);" ) ]
1196
1196
/// ```
1197
- #[ unstable ( feature = "nonzero_min_max" , issue = "89065 " ) ]
1197
+ #[ stable ( feature = "nonzero_min_max" , since = "CURRENT_RUSTC_VERSION " ) ]
1198
1198
pub const MIN : Self = Self :: new( <$Int>:: MIN ) . unwrap( ) ;
1199
1199
1200
1200
/// The largest value that can be represented by this non-zero
@@ -1213,7 +1213,7 @@ macro_rules! nonzero_min_max_signed {
1213
1213
#[ doc = concat!( "# use std::num::" , stringify!( $Ty) , ";" ) ]
1214
1214
#[ doc = concat!( "assert_eq!(" , stringify!( $Ty) , "::MAX.get(), " , stringify!( $Int) , "::MAX);" ) ]
1215
1215
/// ```
1216
- #[ unstable ( feature = "nonzero_min_max" , issue = "89065 " ) ]
1216
+ #[ stable ( feature = "nonzero_min_max" , since = "CURRENT_RUSTC_VERSION " ) ]
1217
1217
pub const MAX : Self = Self :: new( <$Int>:: MAX ) . unwrap( ) ;
1218
1218
}
1219
1219
) +
0 commit comments