aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0074_expr_binding_power.rs
blob: 87afb036eeebc33ad575fc269bae7c4890a0756b (plain)
1
2
3
4
fn foo() {
    1 + 2 * 3 == 1 * 2 + 3;
    *x = 1 + 1;
}