aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0074_expr_binding_power.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/data/parser/inline/0074_expr_binding_power.rs')
-rw-r--r--tests/data/parser/inline/0074_expr_binding_power.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/data/parser/inline/0074_expr_binding_power.rs b/tests/data/parser/inline/0074_expr_binding_power.rs
index db855fd02..87afb036e 100644
--- a/tests/data/parser/inline/0074_expr_binding_power.rs
+++ b/tests/data/parser/inline/0074_expr_binding_power.rs
@@ -1,3 +1,4 @@
1fn foo() { 1fn foo() {
2 1 + 2 * 3 == 1 * 2 + 3 2 1 + 2 * 3 == 1 * 2 + 3;
3 *x = 1 + 1;
3} 4}