aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0079_compound_ops.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/data/parser/inline/0079_compound_ops.rs')
-rw-r--r--tests/data/parser/inline/0079_compound_ops.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/data/parser/inline/0079_compound_ops.rs b/tests/data/parser/inline/0079_compound_ops.rs
new file mode 100644
index 000000000..48be5aebe
--- /dev/null
+++ b/tests/data/parser/inline/0079_compound_ops.rs
@@ -0,0 +1,5 @@
1fn foo() {
2 x += 1;
3 1 + 1 <= 2 * 3;
4 z -= 3 >= 0;
5}