aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs
diff options
context:
space:
mode:
authorbravomikekilo <[email protected]>2019-08-14 14:20:04 +0100
committerbravomikekilo <[email protected]>2019-08-14 14:20:04 +0100
commit4f31fed362e1bb08f748b188eedc0bdc5a070bee (patch)
tree104dad5eb640cb992b984191ea70b3259d8535fb /crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs
parent3fce56280feeb7d621cd98a61c6157393be72c00 (diff)
fix test position
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, 5 insertions, 0 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
new file mode 100644
index 000000000..b51b19630
--- /dev/null
+++ b/crates/ra_syntax/test_data/parser/ok/0052_for_range_block.rs
@@ -0,0 +1,5 @@
1fn foo() {
2 for _x in 0 .. (0 .. {1 + 2}).sum::<u32>() {
3 break;
4 }
5}