2020-01-03 08:40:15 -05:00
|
|
|
error: this file contains an unclosed delimiter
|
2020-05-10 09:10:15 +08:00
|
|
|
--> $DIR/issue-62524.rs:6:3
|
2019-11-15 08:34:34 +08:00
|
|
|
|
|
|
|
|
LL | y![
|
2020-01-03 08:40:15 -05:00
|
|
|
| - 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
|
2020-05-10 09:10:15 +08:00
|
|
|
--> $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 */ }
|
2021-06-21 19:07:19 -07:00
|
|
|
| ~~~~~~~~~~~~~~~
|
2019-11-15 08:34:34 +08:00
|
|
|
help: add a semicolon
|
|
|
|
|
|
|
|
|
LL | Ϥ,;
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2019-11-15 08:34:34 +08:00
|
|
|
|
|
|
|
error: cannot find macro `y` in this scope
|
2020-05-10 09:10:15 +08:00
|
|
|
--> $DIR/issue-62524.rs:5:1
|
2019-11-15 08:34:34 +08:00
|
|
|
|
|
|
|
|
LL | y![
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|