From 3fce56280feeb7d621cd98a61c6157393be72c00 Mon Sep 17 00:00:00 2001 From: bravomikekilo Date: Wed, 14 Aug 2019 12:42:58 +0800 Subject: fix test --- crates/ra_syntax/test_data/parser/inline/ok/0142_for_range_block.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/ra_syntax/test_data/parser/inline/ok') 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 @@ fn foo() { for x in 0 .. { break; - }; + } for _x in 0 .. (0 .. {1 + 2}).sum::() { break; - }; + } } -- cgit v1.2.3