aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-05 16:16:52 +0100
committerAleksey Kladov <[email protected]>2018-08-05 16:16:52 +0100
commit720861bcff4b9f67ca4def66e2996015811fa90b (patch)
tree9bed19490f802860e0c17532eaed853dfeb548bb /tests/data/parser
parentb0291cd8c2ec1d6d164caaa743f7484416e9b3f5 (diff)
Lopps && logical ops
Diffstat (limited to 'tests/data/parser')
-rw-r--r--tests/data/parser/inline/0079_compound_ops.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/data/parser/inline/0079_compound_ops.rs b/tests/data/parser/inline/0079_compound_ops.rs
deleted file mode 100644
index 48be5aebe..000000000
--- a/tests/data/parser/inline/0079_compound_ops.rs
+++ /dev/null
@@ -1,5 +0,0 @@
1fn foo() {
2 x += 1;
3 1 + 1 <= 2 * 3;
4 z -= 3 >= 0;
5}