rust/tests/ui/parser/issues/issue-62524.stderr
2023-01-11 09:32:08 +00:00

34 lines
595 B
Plaintext

error: this file contains an unclosed delimiter
--> $DIR/issue-62524.rs:6:3
|
LL | y![
| - unclosed delimiter
LL | Ϥ,
| ^
error: macros that expand to items must be delimited with braces or followed by a semicolon
--> $DIR/issue-62524.rs:5:3
|
LL | y![
| ___^
LL | | Ϥ,
| |__^
|
help: change the delimiters to curly braces
|
LL | y! { /* items */ }
| ~~~~~~~~~~~~~~~
help: add a semicolon
|
LL | Ϥ,;
| +
error: cannot find macro `y` in this scope
--> $DIR/issue-62524.rs:5:1
|
LL | y![
| ^
error: aborting due to 3 previous errors