You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
511 B
18 lines
511 B
error: no rules expected the token `{`
|
|
--> $DIR/delimiter-span.rs:17:16
|
|
|
|
|
3 | macro_rules! picky {
|
|
| ------------------ when calling this macro
|
|
...
|
|
17 | picky!({ 123, self });
|
|
| ^ no rules expected this token in macro call
|
|
|
|
error: no rules expected the token `{`
|
|
--> $DIR/delimiter-span.rs:18:16
|
|
|
|
|
3 | macro_rules! picky {
|
|
| ------------------ when calling this macro
|
|
...
|
|
18 | picky!({ 123 });
|
|
| ^ no rules expected this token in macro call
|