Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/test_data/parser/err/0044_item_modifiers.rast')
| -rw-r--r-- | crates/syntax/test_data/parser/err/0044_item_modifiers.rast | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/err/0044_item_modifiers.rast b/crates/syntax/test_data/parser/err/0044_item_modifiers.rast new file mode 100644 index 0000000000..b4ff1a14a7 --- /dev/null +++ b/crates/syntax/test_data/parser/err/0044_item_modifiers.rast @@ -0,0 +1,48 @@ + [email protected] "unsafe" + [email protected] " " + [email protected] "async" + [email protected] " " + [email protected] "fn" + [email protected] " " + [email protected] "foo" + [email protected] "(" + [email protected] ")" + [email protected] " " + [email protected] "{" + [email protected] "}" + [email protected] "\n" + [email protected] "unsafe" + [email protected] " " + [email protected] "const" + [email protected] " " + [email protected] "fn" + [email protected] " " + [email protected] "bar" + [email protected] "(" + [email protected] ")" + [email protected] " " + [email protected] "{" + [email protected] "}" + [email protected] "\n" +error 6..6: expected existential, fn, trait or impl +error 38..38: expected a name +error 40..40: missing type for `const` or `static` +error 40..40: expected SEMICOLON +error 44..44: expected BANG +error 46..46: expected SEMICOLON +error 47..47: expected an item |