Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/test_data/parser/err/0042_weird_blocks.rs')
-rw-r--r--crates/syntax/test_data/parser/err/0042_weird_blocks.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/err/0042_weird_blocks.rs b/crates/syntax/test_data/parser/err/0042_weird_blocks.rs
new file mode 100644
index 0000000000..8fa324c1a1
--- /dev/null
+++ b/crates/syntax/test_data/parser/err/0042_weird_blocks.rs
@@ -0,0 +1,6 @@
+fn main() {
+ { unsafe 92 }
+ { async 92 }
+ { try 92 }
+ { 'label: 92 }
+}