diff options
Diffstat (limited to 'crates/syntax/test_data/parser/ok/0049_async_block.rs')
-rw-r--r-- | crates/syntax/test_data/parser/ok/0049_async_block.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/ok/0049_async_block.rs b/crates/syntax/test_data/parser/ok/0049_async_block.rs new file mode 100644 index 000000000..4781b3225 --- /dev/null +++ b/crates/syntax/test_data/parser/ok/0049_async_block.rs | |||
@@ -0,0 +1,5 @@ | |||
1 | fn foo() { | ||
2 | async {}; | ||
3 | async move {}; | ||
4 | } | ||
5 | |||