aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs b/crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs
index 33af70026..eb745767b 100644
--- a/crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs
+++ b/crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs
@@ -1,8 +1,8 @@
1fn foo() { 1fn foo() {
2 for x in 0 .. { 2 for x in 0 .. {
3 break; 3 break;
4 }; 4 }
5 for _x in 0 .. (0 .. {1 + 2}).sum::<u32>() { 5 for _x in 0 .. (0 .. {1 + 2}).sum::<u32>() {
6 break; 6 break;
7 }; 7 }
8} 8}