rust/tests/data/parser/inline/0074_expr_binding_power.rs
2018-08-04 17:17:20 +03:00

4 lines
57 B
Rust

fn foo() {
1 + 2 * 3 == 1 * 2 + 3;
*x = 1 + 1;
}