aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/ok/0058_unary_expr_precedence.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/test_data/parser/ok/0058_unary_expr_precedence.rs')
-rw-r--r--crates/ra_syntax/test_data/parser/ok/0058_unary_expr_precedence.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/crates/ra_syntax/test_data/parser/ok/0058_unary_expr_precedence.rs b/crates/ra_syntax/test_data/parser/ok/0058_unary_expr_precedence.rs
deleted file mode 100644
index 100fccc64..000000000
--- a/crates/ra_syntax/test_data/parser/ok/0058_unary_expr_precedence.rs
+++ /dev/null
@@ -1,7 +0,0 @@
1fn foo() {
2 1 + *&2 + 3;
3 *&1 as u64;
4 *x(1);
5 &x[1];
6 -1..2;
7}