mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
248 B
Rust
21 lines
248 B
Rust
// check-pass
|
|
// compile-flags: -Z trait-solver=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;
|
|
}
|