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

6 lines
62 B
Rust
Raw Normal View History

2018-08-05 15:09:25 +02:00
fn foo() {
x += 1;
1 + 1 <= 2 * 3;
z -= 3 >= 0;
}