We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c5220d commit c71004cCopy full SHA for c71004c
src/test/ui/wrapping-int-combinations.rs
@@ -65,9 +65,11 @@ fn main() {
65
wrapping_test!(i32, std::i32::MIN, std::i32::MAX);
66
wrapping_test!(i64, std::i64::MIN, std::i64::MAX);
67
wrapping_test!(i128, std::i128::MIN, std::i128::MAX);
68
+ wrapping_test!(isize, std::isize::MIN, std::isize::MAX);
69
wrapping_test!(u8, std::u8::MIN, std::u8::MAX);
70
wrapping_test!(u16, std::u16::MIN, std::u16::MAX);
71
wrapping_test!(u32, std::u32::MIN, std::u32::MAX);
72
wrapping_test!(u64, std::u64::MIN, std::u64::MAX);
73
wrapping_test!(u128, std::u128::MIN, std::u128::MAX);
74
+ wrapping_test!(usize, std::usize::MIN, std::usize::MAX);
75
}
0 commit comments