aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0084_compound_ops.rs
blob: 04b1764f19804ac914639473dedd175e56e229d2 (plain)
1
2
3
4
5
6
fn foo() {
    x += 1;
    1 + 1 <= 2 * 3;
    z -= 3 >= 0;
    true || true && false;
}