]> git.lizzy.rs Git - rust.git/blob - tests/ui/chalkify/arithmetic.rs
Rollup merge of #107014 - notriddle:notriddle/js-cleanup, r=GuillaumeGomez
[rust.git] / tests / ui / chalkify / arithmetic.rs
1 // check-pass
2 // compile-flags: -Z trait-solver=chalk
3
4 fn main() {
5     1 + 2;
6     3 * 6;
7     2 - 5;
8     17 / 6;
9     23 % 11;
10     4 & 6;
11     7 | 15;
12     4 << 7;
13     123 >> 3;
14     1 == 2;
15     5 != 5;
16     6 < 2;
17     7 > 11;
18     3 <= 1;
19     9 >= 14;
20 }