aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs
diff options
context:
space:
mode:
authorGeoffry Song <[email protected]>2019-10-06 00:30:10 +0100
committerGeoffry Song <[email protected]>2019-10-06 00:33:05 +0100
commitb4fe06bc17127b6007114a8ba8bf876fdef112e0 (patch)
tree6670bc0dacbc94a9b4258cd11ef9d1c4839017a2 /crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs
parentb63f260bbcf89a2b40358f534b97f672468294fb (diff)
Move tests around
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs b/crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs
index 1080b48a1..f1c3f7118 100644
--- a/crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs
+++ b/crates/ra_syntax/test_data/parser/inline/ok/0019_unary_expr.rs
@@ -1,9 +1,5 @@
1fn foo() { 1fn foo() {
2 **&1 + 1; 2 **&1;
3 !!true; 3 !!true;
4 --1; 4 --1;
5 *&1 as u64;
6 *x(1);
7 &x[1];
8 -1..2;
9} 5}