rust/tests/data/parser/inline/0084_compound_ops.rs

7 lines
89 B
Rust
Raw Normal View History

2018-08-05 17:18:02 +02:00
fn foo() {
x += 1;
1 + 1 <= 2 * 3;
z -= 3 >= 0;
true || true && false;
}