rust/tests/data/parser/inline/0074_expr_binding_power.rs

5 lines
57 B
Rust
Raw Normal View History

2018-08-04 15:34:54 +02:00
fn foo() {
2018-08-04 16:17:20 +02:00
1 + 2 * 3 == 1 * 2 + 3;
*x = 1 + 1;
2018-08-04 15:34:54 +02:00
}