diff options
Diffstat (limited to 'crates/syntax/test_data/parser/inline/ok/0075_block.rs')
-rw-r--r-- | crates/syntax/test_data/parser/inline/ok/0075_block.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/inline/ok/0075_block.rs b/crates/syntax/test_data/parser/inline/ok/0075_block.rs new file mode 100644 index 000000000..81f44c533 --- /dev/null +++ b/crates/syntax/test_data/parser/inline/ok/0075_block.rs | |||
@@ -0,0 +1,4 @@ | |||
1 | fn a() {} | ||
2 | fn b() { let _ = 1; } | ||
3 | fn c() { 1; 2; } | ||
4 | fn d() { 1; 2 } | ||