aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0080_postfix_range.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0080_postfix_range.rs')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0080_postfix_range.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0080_postfix_range.rs b/crates/ra_syntax/test_data/parser/inline/ok/0080_postfix_range.rs
deleted file mode 100644
index e7b7cfc6b..000000000
--- a/crates/ra_syntax/test_data/parser/inline/ok/0080_postfix_range.rs
+++ /dev/null
@@ -1,5 +0,0 @@
1fn foo() {
2 let x = 1..;
3 match 1.. { _ => () };
4 match a.b()..S { _ => () };
5}