aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs')
-rw-r--r--crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs b/crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs
deleted file mode 100644
index b51b19630..000000000
--- a/crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs
+++ /dev/null
@@ -1,5 +0,0 @@
1fn foo() {
2 for _x in 0 .. (0 .. {1 + 2}).sum::<u32>() {
3 break;
4 }
5}