rust/tests/ui/parser/macro/macro-incomplete-parse.stderr

36 lines
1.1 KiB
Plaintext
Raw Normal View History

error: macro expansion ignores token `,` and any following
2019-05-31 15:50:04 -05:00
--> $DIR/macro-incomplete-parse.rs:5:9
|
2019-03-09 06:03:44 -06:00
LL | ,
| ^
...
2018-02-22 18:42:32 -06:00
LL | ignored_item!();
2021-10-14 13:28:28 -05:00
| --------------- caused by the macro expansion here
|
= note: the usage of `ignored_item!` is likely invalid in item context
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
2019-05-31 15:50:04 -05:00
--> $DIR/macro-incomplete-parse.rs:10:14
|
2019-03-09 06:03:44 -06:00
LL | () => ( 1,
| ^ expected one of `.`, `;`, `?`, `}`, or an operator
2017-06-21 13:32:50 -05:00
...
2018-02-22 18:42:32 -06:00
LL | ignored_expr!();
2021-10-14 13:28:28 -05:00
| --------------- in this macro invocation
|
= note: this error originates in the macro `ignored_expr` (in Nightly builds, run with -Z macro-backtrace for more info)
error: macro expansion ignores token `,` and any following
2019-05-31 15:50:04 -05:00
--> $DIR/macro-incomplete-parse.rs:16:14
|
2019-03-09 06:03:44 -06:00
LL | () => ( 1, 2 )
| ^
...
2018-02-22 18:42:32 -06:00
LL | ignored_pat!() => (),
| -------------- caused by the macro expansion here
|
= note: the usage of `ignored_pat!` is likely invalid in pattern context
error: aborting due to 3 previous errors
2017-03-25 21:06:19 -05:00