summary refs log tree commit diff
path: root/src/test/ui/numbers-arithmetic/arith-2.rs
blob: 46c280677ce84836e18a17fdff8dffe6343c962c (plain)
1
2
3
4
5
6
7
8
9
// run-pass



pub fn main() {
    let i32_c: isize = 0x10101010;
    assert_eq!(i32_c + i32_c * 2 / 3 * 2 + (i32_c - 7 % 3),
                 i32_c + i32_c * 2 / 3 * 2 + (i32_c - 7 % 3));
}