]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/mbe_missing_right_paren.stderr
Auto merge of #101030 - woppopo:const_location, r=scottmcm
[rust.git] / src / test / ui / parser / mbe_missing_right_paren.stderr
1 error: this file contains an unclosed delimiter
2   --> $DIR/mbe_missing_right_paren.rs:3:19
3    |
4 LL | macro_rules! abc(ؼ
5    |                 - ^
6    |                 |
7    |                 unclosed delimiter
8
9 error: macros that expand to items must be delimited with braces or followed by a semicolon
10   --> $DIR/mbe_missing_right_paren.rs:3:17
11    |
12 LL | macro_rules! abc(ؼ
13    |                 ^^
14    |
15 help: change the delimiters to curly braces
16    |
17 LL | macro_rules! abc { /* items */ }
18    |                  ~~~~~~~~~~~~~~~
19 help: add a semicolon
20    |
21 LL | macro_rules! abc(ؼ;
22    |                   +
23
24 error: unexpected end of macro invocation
25   --> $DIR/mbe_missing_right_paren.rs:3:19
26    |
27 LL | macro_rules! abc(ؼ
28    |                   ^ missing tokens in macro arguments
29
30 error: aborting due to 3 previous errors
31