rust/tests/data/parser/inline/0084_compound_ops.rs
2018-08-05 18:18:02 +03:00

6 lines
89 B
Rust

fn foo() {
x += 1;
1 + 1 <= 2 * 3;
z -= 3 >= 0;
true || true && false;
}