aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0084_compound_ops.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-05 16:18:02 +0100
committerAleksey Kladov <[email protected]>2018-08-05 16:18:02 +0100
commitd44169ab1e2897a90f8aa7d7672d2fe318cceb27 (patch)
treed8e52bfeeda6fcd3d2cbc0624c4f188449c32543 /tests/data/parser/inline/0084_compound_ops.rs
parent720861bcff4b9f67ca4def66e2996015811fa90b (diff)
ampersand -> amp
Diffstat (limited to 'tests/data/parser/inline/0084_compound_ops.rs')
-rw-r--r--tests/data/parser/inline/0084_compound_ops.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/data/parser/inline/0084_compound_ops.rs b/tests/data/parser/inline/0084_compound_ops.rs
new file mode 100644
index 000000000..04b1764f1
--- /dev/null
+++ b/tests/data/parser/inline/0084_compound_ops.rs
@@ -0,0 +1,6 @@
1fn foo() {
2 x += 1;
3 1 + 1 <= 2 * 3;
4 z -= 3 >= 0;
5 true || true && false;
6}