2020-01-03 07:40:15 -06:00
|
|
|
error: this file contains an unclosed delimiter
|
2019-11-10 01:38:09 -06:00
|
|
|
--> $DIR/mbe_missing_right_paren.rs:3:19
|
|
|
|
|
|
|
|
|
LL | macro_rules! abc(ؼ
|
|
|
|
| - ^
|
|
|
|
| |
|
2020-01-03 07:40:15 -06:00
|
|
|
| unclosed delimiter
|
2019-11-10 01:38:09 -06:00
|
|
|
|
|
|
|
error: macros that expand to items must be delimited with braces or followed by a semicolon
|
|
|
|
--> $DIR/mbe_missing_right_paren.rs:3:17
|
|
|
|
|
|
|
|
|
LL | macro_rules! abc(ؼ
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
help: change the delimiters to curly braces
|
|
|
|
|
|
2020-01-29 03:02:58 -06:00
|
|
|
LL | macro_rules! abc { /* items */ }
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~~~~~~
|
2019-11-10 01:38:09 -06:00
|
|
|
help: add a semicolon
|
|
|
|
|
|
|
|
|
LL | macro_rules! abc(ؼ;
|
2021-06-21 21:07:19 -05:00
|
|
|
| +
|
2019-11-10 01:38:09 -06:00
|
|
|
|
|
|
|
error: unexpected end of macro invocation
|
2020-02-09 08:54:38 -06:00
|
|
|
--> $DIR/mbe_missing_right_paren.rs:3:19
|
2019-11-10 01:38:09 -06:00
|
|
|
|
|
|
|
|
LL | macro_rules! abc(ؼ
|
2020-02-09 08:54:38 -06:00
|
|
|
| ^ missing tokens in macro arguments
|
2019-11-10 01:38:09 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|