summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/arithmetic.rs
blob: a20acce4c76b2e64e986ddff4dbc8c93ad1bb5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// check-pass
// compile-flags: -Z chalk

fn main() {
    1 + 2;
    3 * 6;
    2 - 5;
    17 / 6;
    23 % 11;
    4 & 6;
    7 | 15;
    4 << 7;
    123 >> 3;
    1 == 2;
    5 != 5;
    6 < 2;
    7 > 11;
    3 <= 1;
    9 >= 14;
}