@@ -938,7 +938,9 @@ Basic usage:
938
938
```
939
939
" , $Feature, "assert_eq!(100" , stringify!( $SelfT) , ".saturating_add(1), 101);
940
940
assert_eq!(" , stringify!( $SelfT) , "::max_value().saturating_add(100), " , stringify!( $SelfT) ,
941
- "::max_value());" ,
941
+ "::max_value());
942
+ assert_eq!(" , stringify!( $SelfT) , "::min_value().saturating_add(-1), " , stringify!( $SelfT) ,
943
+ "::min_value());" ,
942
944
$EndFeature, "
943
945
```" ) ,
944
946
@@ -952,7 +954,6 @@ $EndFeature, "
952
954
}
953
955
}
954
956
955
-
956
957
doc_comment! {
957
958
concat!( "Saturating integer subtraction. Computes `self - rhs`, saturating at the
958
959
numeric bounds instead of overflowing.
@@ -964,7 +965,9 @@ Basic usage:
964
965
```
965
966
" , $Feature, "assert_eq!(100" , stringify!( $SelfT) , ".saturating_sub(127), -27);
966
967
assert_eq!(" , stringify!( $SelfT) , "::min_value().saturating_sub(100), " , stringify!( $SelfT) ,
967
- "::min_value());" ,
968
+ "::min_value());
969
+ assert_eq!(" , stringify!( $SelfT) , "::max_value().saturating_sub(-1), " , stringify!( $SelfT) ,
970
+ "::max_value());" ,
968
971
$EndFeature, "
969
972
```" ) ,
970
973
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
0 commit comments