aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0079_compound_ops.rs
blob: 48be5aebe9c9a6c8c224c5a15f5d55b66a026de9 (plain)
1
2
3
4
5
fn foo() {
    x += 1;
    1 + 1 <= 2 * 3;
    z -= 3 >= 0;
}