diff options
author | bravomikekilo <[email protected]> | 2019-08-14 05:42:58 +0100 |
---|---|---|
committer | bravomikekilo <[email protected]> | 2019-08-14 05:42:58 +0100 |
commit | 3fce56280feeb7d621cd98a61c6157393be72c00 (patch) | |
tree | 44945186f211b5c7091cdf037907a5781e41ba3e /crates/ra_syntax | |
parent | 2bebdf0b372b23c3766fc08b345012870ae768c9 (diff) |
fix test
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r-- | crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs | 4 |
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 @@ | |||
1 | fn foo() { | 1 | fn 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 | } |