We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 941dca8 commit dc37b55Copy full SHA for dc37b55
library/core/tests/num/i32.rs
@@ -23,6 +23,8 @@ fn test_arith_operation() {
23
assert_eq!(i32_b & i32_b << 1, 0);
24
assert_eq!(i32_b | i32_b << 1, 0x30303030);
25
let i32_c: isize = 0x10101010;
26
- assert_eq!(i32_c + i32_c * 2 / 3 * 2 + (i32_c - 7 % 3),
27
- i32_c + i32_c * 2 / 3 * 2 + (i32_c - 7 % 3));
+ assert_eq!(
+ i32_c + i32_c * 2 / 3 * 2 + (i32_c - 7 % 3),
28
+ i32_c + i32_c * 2 / 3 * 2 + (i32_c - 7 % 3)
29
+ );
30
}
0 commit comments