@@ -522,7 +522,7 @@ macro_rules! uint_impl {
522522 #[ doc = concat!( "assert_eq!(1" , stringify!( $SelfT) , ".checked_div(0), None);" ) ]
523523 /// ```
524524 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
525- #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51 .0" ) ]
525+ #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.52 .0" ) ]
526526 #[ must_use = "this returns the result of the operation, \
527527 without modifying the original"]
528528 #[ inline]
@@ -548,7 +548,7 @@ macro_rules! uint_impl {
548548 #[ doc = concat!( "assert_eq!(1" , stringify!( $SelfT) , ".checked_div_euclid(0), None);" ) ]
549549 /// ```
550550 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
551- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
551+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
552552 #[ must_use = "this returns the result of the operation, \
553553 without modifying the original"]
554554 #[ inline]
@@ -573,7 +573,7 @@ macro_rules! uint_impl {
573573 #[ doc = concat!( "assert_eq!(5" , stringify!( $SelfT) , ".checked_rem(0), None);" ) ]
574574 /// ```
575575 #[ stable( feature = "wrapping" , since = "1.7.0" ) ]
576- #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51 .0" ) ]
576+ #[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.52 .0" ) ]
577577 #[ must_use = "this returns the result of the operation, \
578578 without modifying the original"]
579579 #[ inline]
@@ -599,7 +599,7 @@ macro_rules! uint_impl {
599599 #[ doc = concat!( "assert_eq!(5" , stringify!( $SelfT) , ".checked_rem_euclid(0), None);" ) ]
600600 /// ```
601601 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
602- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
602+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
603603 #[ must_use = "this returns the result of the operation, \
604604 without modifying the original"]
605605 #[ inline]
@@ -876,7 +876,7 @@ macro_rules! uint_impl {
876876 #[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_div(10), 10);" ) ]
877877 /// ```
878878 #[ stable( feature = "num_wrapping" , since = "1.2.0" ) ]
879- #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.51 .0" ) ]
879+ #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.52 .0" ) ]
880880 #[ must_use = "this returns the result of the operation, \
881881 without modifying the original"]
882882 #[ inline]
@@ -901,7 +901,7 @@ macro_rules! uint_impl {
901901 #[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_div_euclid(10), 10);" ) ]
902902 /// ```
903903 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
904- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
904+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
905905 #[ must_use = "this returns the result of the operation, \
906906 without modifying the original"]
907907 #[ inline]
@@ -924,7 +924,7 @@ macro_rules! uint_impl {
924924 #[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_rem(10), 0);" ) ]
925925 /// ```
926926 #[ stable( feature = "num_wrapping" , since = "1.2.0" ) ]
927- #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.51 .0" ) ]
927+ #[ rustc_const_stable( feature = "const_wrapping_int_methods" , since = "1.52 .0" ) ]
928928 #[ must_use = "this returns the result of the operation, \
929929 without modifying the original"]
930930 #[ inline]
@@ -950,7 +950,7 @@ macro_rules! uint_impl {
950950 #[ doc = concat!( "assert_eq!(100" , stringify!( $SelfT) , ".wrapping_rem_euclid(10), 0);" ) ]
951951 /// ```
952952 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
953- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
953+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
954954 #[ must_use = "this returns the result of the operation, \
955955 without modifying the original"]
956956 #[ inline]
@@ -1185,7 +1185,7 @@ macro_rules! uint_impl {
11851185 /// ```
11861186 #[ inline]
11871187 #[ stable( feature = "wrapping" , since = "1.7.0" ) ]
1188- #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.51 .0" ) ]
1188+ #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.52 .0" ) ]
11891189 #[ must_use = "this returns the result of the operation, \
11901190 without modifying the original"]
11911191 pub const fn overflowing_div( self , rhs: Self ) -> ( Self , bool ) {
@@ -1215,7 +1215,7 @@ macro_rules! uint_impl {
12151215 /// ```
12161216 #[ inline]
12171217 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1218- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1218+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
12191219 #[ must_use = "this returns the result of the operation, \
12201220 without modifying the original"]
12211221 pub const fn overflowing_div_euclid( self , rhs: Self ) -> ( Self , bool ) {
@@ -1242,7 +1242,7 @@ macro_rules! uint_impl {
12421242 /// ```
12431243 #[ inline]
12441244 #[ stable( feature = "wrapping" , since = "1.7.0" ) ]
1245- #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.51 .0" ) ]
1245+ #[ rustc_const_stable( feature = "const_overflowing_int_methods" , since = "1.52 .0" ) ]
12461246 #[ must_use = "this returns the result of the operation, \
12471247 without modifying the original"]
12481248 pub const fn overflowing_rem( self , rhs: Self ) -> ( Self , bool ) {
@@ -1272,7 +1272,7 @@ macro_rules! uint_impl {
12721272 /// ```
12731273 #[ inline]
12741274 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1275- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1275+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
12761276 #[ must_use = "this returns the result of the operation, \
12771277 without modifying the original"]
12781278 pub const fn overflowing_rem_euclid( self , rhs: Self ) -> ( Self , bool ) {
@@ -1456,7 +1456,7 @@ macro_rules! uint_impl {
14561456 #[ doc = concat!( "assert_eq!(7" , stringify!( $SelfT) , ".div_euclid(4), 1); // or any other integer type" ) ]
14571457 /// ```
14581458 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1459- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1459+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
14601460 #[ must_use = "this returns the result of the operation, \
14611461 without modifying the original"]
14621462 #[ inline]
@@ -1484,7 +1484,7 @@ macro_rules! uint_impl {
14841484 #[ doc = concat!( "assert_eq!(7" , stringify!( $SelfT) , ".rem_euclid(4), 3); // or any other integer type" ) ]
14851485 /// ```
14861486 #[ stable( feature = "euclidean_division" , since = "1.38.0" ) ]
1487- #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.51 .0" ) ]
1487+ #[ rustc_const_stable( feature = "const_euclidean_int_methods" , since = "1.52 .0" ) ]
14881488 #[ must_use = "this returns the result of the operation, \
14891489 without modifying the original"]
14901490 #[ inline]
0 commit comments