rust/tests/ui/parser/issues/issue-62524.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
595 B
Plaintext
Raw Normal View History

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