@@ -477,7 +477,6 @@ macro_rules! int_impl {
477477 #[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MAX - 2).strict_add(3);" ) ]
478478 /// ```
479479 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
480- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
481480 #[ must_use = "this returns the result of the operation, \
482481 without modifying the original"]
483482 #[ inline]
@@ -573,7 +572,6 @@ macro_rules! int_impl {
573572 #[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MAX - 2).strict_add_unsigned(3);" ) ]
574573 /// ```
575574 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
576- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
577575 #[ must_use = "this returns the result of the operation, \
578576 without modifying the original"]
579577 #[ inline]
@@ -629,7 +627,6 @@ macro_rules! int_impl {
629627 #[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MIN + 2).strict_sub(3);" ) ]
630628 /// ```
631629 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
632- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
633630 #[ must_use = "this returns the result of the operation, \
634631 without modifying the original"]
635632 #[ inline]
@@ -725,7 +722,6 @@ macro_rules! int_impl {
725722 #[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MIN + 2).strict_sub_unsigned(3);" ) ]
726723 /// ```
727724 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
728- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
729725 #[ must_use = "this returns the result of the operation, \
730726 without modifying the original"]
731727 #[ inline]
@@ -781,7 +777,6 @@ macro_rules! int_impl {
781777 #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_mul(2);" ) ]
782778 /// ```
783779 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
784- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
785780 #[ must_use = "this returns the result of the operation, \
786781 without modifying the original"]
787782 #[ inline]
@@ -895,7 +890,6 @@ macro_rules! int_impl {
895890 #[ doc = concat!( "let _ = (1" , stringify!( $SelfT) , ").strict_div(0);" ) ]
896891 /// ```
897892 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
898- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
899893 #[ must_use = "this returns the result of the operation, \
900894 without modifying the original"]
901895 #[ inline]
@@ -969,7 +963,6 @@ macro_rules! int_impl {
969963 #[ doc = concat!( "let _ = (1" , stringify!( $SelfT) , ").strict_div_euclid(0);" ) ]
970964 /// ```
971965 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
972- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
973966 #[ must_use = "this returns the result of the operation, \
974967 without modifying the original"]
975968 #[ inline]
@@ -1042,7 +1035,6 @@ macro_rules! int_impl {
10421035 #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_rem(-1);" ) ]
10431036 /// ```
10441037 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1045- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
10461038 #[ must_use = "this returns the result of the operation, \
10471039 without modifying the original"]
10481040 #[ inline]
@@ -1115,7 +1107,6 @@ macro_rules! int_impl {
11151107 #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_rem_euclid(-1);" ) ]
11161108 /// ```
11171109 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1118- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
11191110 #[ must_use = "this returns the result of the operation, \
11201111 without modifying the original"]
11211112 #[ inline]
@@ -1203,7 +1194,6 @@ macro_rules! int_impl {
12031194 #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_neg();" ) ]
12041195 ///
12051196 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1206- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
12071197 #[ must_use = "this returns the result of the operation, \
12081198 without modifying the original"]
12091199 #[ inline]
@@ -1267,7 +1257,6 @@ macro_rules! int_impl {
12671257 #[ doc = concat!( "let _ = 0x1" , stringify!( $SelfT) , ".strict_shl(129);" ) ]
12681258 /// ```
12691259 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1270- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
12711260 #[ must_use = "this returns the result of the operation, \
12721261 without modifying the original"]
12731262 #[ inline]
@@ -1393,7 +1382,6 @@ macro_rules! int_impl {
13931382 #[ doc = concat!( "let _ = 0x10" , stringify!( $SelfT) , ".strict_shr(128);" ) ]
13941383 /// ```
13951384 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1396- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
13971385 #[ must_use = "this returns the result of the operation, \
13981386 without modifying the original"]
13991387 #[ inline]
@@ -1521,7 +1509,6 @@ macro_rules! int_impl {
15211509 #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_abs();" ) ]
15221510 /// ```
15231511 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1524- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
15251512 #[ must_use = "this returns the result of the operation, \
15261513 without modifying the original"]
15271514 #[ inline]
@@ -1596,7 +1583,6 @@ macro_rules! int_impl {
15961583 #[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_pow(2);" ) ]
15971584 /// ```
15981585 #[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1599- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
16001586 #[ must_use = "this returns the result of the operation, \
16011587 without modifying the original"]
16021588 #[ inline]
@@ -2370,7 +2356,6 @@ macro_rules! int_impl {
23702356 /// assert_eq!((sum1, sum0), (6, 8));
23712357 /// ```
23722358 #[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2373- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
23742359 #[ must_use = "this returns the result of the operation, \
23752360 without modifying the original"]
23762361 #[ inline]
@@ -2478,7 +2463,6 @@ macro_rules! int_impl {
24782463 #[ doc = concat!( "assert_eq!((diff1, diff0), (10, " , stringify!( $UnsignedT) , "::MAX));" ) ]
24792464 /// ```
24802465 #[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2481- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
24822466 #[ must_use = "this returns the result of the operation, \
24832467 without modifying the original"]
24842468 #[ inline]
0 commit comments