@@ -477,7 +477,6 @@ macro_rules! int_impl {
477
477
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MAX - 2).strict_add(3);" ) ]
478
478
/// ```
479
479
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
480
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
481
480
#[ must_use = "this returns the result of the operation, \
482
481
without modifying the original"]
483
482
#[ inline]
@@ -573,7 +572,6 @@ macro_rules! int_impl {
573
572
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MAX - 2).strict_add_unsigned(3);" ) ]
574
573
/// ```
575
574
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
576
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
577
575
#[ must_use = "this returns the result of the operation, \
578
576
without modifying the original"]
579
577
#[ inline]
@@ -629,7 +627,6 @@ macro_rules! int_impl {
629
627
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MIN + 2).strict_sub(3);" ) ]
630
628
/// ```
631
629
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
632
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
633
630
#[ must_use = "this returns the result of the operation, \
634
631
without modifying the original"]
635
632
#[ inline]
@@ -725,7 +722,6 @@ macro_rules! int_impl {
725
722
#[ doc = concat!( "let _ = (" , stringify!( $SelfT) , "::MIN + 2).strict_sub_unsigned(3);" ) ]
726
723
/// ```
727
724
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
728
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
729
725
#[ must_use = "this returns the result of the operation, \
730
726
without modifying the original"]
731
727
#[ inline]
@@ -781,7 +777,6 @@ macro_rules! int_impl {
781
777
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_mul(2);" ) ]
782
778
/// ```
783
779
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
784
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
785
780
#[ must_use = "this returns the result of the operation, \
786
781
without modifying the original"]
787
782
#[ inline]
@@ -895,7 +890,6 @@ macro_rules! int_impl {
895
890
#[ doc = concat!( "let _ = (1" , stringify!( $SelfT) , ").strict_div(0);" ) ]
896
891
/// ```
897
892
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
898
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
899
893
#[ must_use = "this returns the result of the operation, \
900
894
without modifying the original"]
901
895
#[ inline]
@@ -969,7 +963,6 @@ macro_rules! int_impl {
969
963
#[ doc = concat!( "let _ = (1" , stringify!( $SelfT) , ").strict_div_euclid(0);" ) ]
970
964
/// ```
971
965
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
972
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
973
966
#[ must_use = "this returns the result of the operation, \
974
967
without modifying the original"]
975
968
#[ inline]
@@ -1042,7 +1035,6 @@ macro_rules! int_impl {
1042
1035
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_rem(-1);" ) ]
1043
1036
/// ```
1044
1037
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1045
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1046
1038
#[ must_use = "this returns the result of the operation, \
1047
1039
without modifying the original"]
1048
1040
#[ inline]
@@ -1115,7 +1107,6 @@ macro_rules! int_impl {
1115
1107
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_rem_euclid(-1);" ) ]
1116
1108
/// ```
1117
1109
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1118
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1119
1110
#[ must_use = "this returns the result of the operation, \
1120
1111
without modifying the original"]
1121
1112
#[ inline]
@@ -1203,7 +1194,6 @@ macro_rules! int_impl {
1203
1194
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_neg();" ) ]
1204
1195
///
1205
1196
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1206
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1207
1197
#[ must_use = "this returns the result of the operation, \
1208
1198
without modifying the original"]
1209
1199
#[ inline]
@@ -1266,7 +1256,6 @@ macro_rules! int_impl {
1266
1256
#[ doc = concat!( "let _ = 0x1" , stringify!( $SelfT) , ".strict_shl(129);" ) ]
1267
1257
/// ```
1268
1258
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1269
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1270
1259
#[ must_use = "this returns the result of the operation, \
1271
1260
without modifying the original"]
1272
1261
#[ inline]
@@ -1391,7 +1380,6 @@ macro_rules! int_impl {
1391
1380
#[ doc = concat!( "let _ = 0x10" , stringify!( $SelfT) , ".strict_shr(128);" ) ]
1392
1381
/// ```
1393
1382
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1394
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1395
1383
#[ must_use = "this returns the result of the operation, \
1396
1384
without modifying the original"]
1397
1385
#[ inline]
@@ -1519,7 +1507,6 @@ macro_rules! int_impl {
1519
1507
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MIN.strict_abs();" ) ]
1520
1508
/// ```
1521
1509
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1522
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1523
1510
#[ must_use = "this returns the result of the operation, \
1524
1511
without modifying the original"]
1525
1512
#[ inline]
@@ -1594,7 +1581,6 @@ macro_rules! int_impl {
1594
1581
#[ doc = concat!( "let _ = " , stringify!( $SelfT) , "::MAX.strict_pow(2);" ) ]
1595
1582
/// ```
1596
1583
#[ unstable( feature = "strict_overflow_ops" , issue = "118260" ) ]
1597
- #[ rustc_const_unstable( feature = "const_strict_overflow_ops" , issue = "118260" ) ]
1598
1584
#[ must_use = "this returns the result of the operation, \
1599
1585
without modifying the original"]
1600
1586
#[ inline]
@@ -2368,7 +2354,6 @@ macro_rules! int_impl {
2368
2354
/// assert_eq!((sum1, sum0), (6, 8));
2369
2355
/// ```
2370
2356
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2371
- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
2372
2357
#[ must_use = "this returns the result of the operation, \
2373
2358
without modifying the original"]
2374
2359
#[ inline]
@@ -2476,7 +2461,6 @@ macro_rules! int_impl {
2476
2461
#[ doc = concat!( "assert_eq!((diff1, diff0), (10, " , stringify!( $UnsignedT) , "::MAX));" ) ]
2477
2462
/// ```
2478
2463
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
2479
- #[ rustc_const_unstable( feature = "const_bigint_helper_methods" , issue = "85532" ) ]
2480
2464
#[ must_use = "this returns the result of the operation, \
2481
2465
without modifying the original"]
2482
2466
#[ inline]
0 commit comments