2018-04-23 22:50:28 +00:00
|
|
|
error: no rules expected the token `r#async`
|
2018-12-27 00:07:00 +00:00
|
|
|
--> $DIR/edition-keywords-2015-2018-parsing.rs:16:31
|
2018-04-23 22:50:28 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | r#async = consumes_async!(r#async);
|
2018-11-04 22:01:38 +00:00
|
|
|
| ^^^^^^^ no rules expected this token in macro call
|
2022-11-12 22:18:32 +00:00
|
|
|
|
|
|
|
|
note: while trying to match `async`
|
|
|
|
--> $DIR/auxiliary/edition-kw-macro-2018.rs:17:6
|
|
|
|
|
|
|
|
|
LL | (async) => (1)
|
|
|
|
| ^^^^^
|
2018-04-23 22:50:28 +00:00
|
|
|
|
|
|
|
error: no rules expected the token `async`
|
2018-12-27 00:07:00 +00:00
|
|
|
--> $DIR/edition-keywords-2015-2018-parsing.rs:17:35
|
2018-04-23 22:50:28 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | r#async = consumes_async_raw!(async);
|
2018-11-04 22:01:38 +00:00
|
|
|
| ^^^^^ no rules expected this token in macro call
|
2022-11-12 22:18:32 +00:00
|
|
|
|
|
|
|
|
note: while trying to match `r#async`
|
|
|
|
--> $DIR/auxiliary/edition-kw-macro-2018.rs:22:6
|
|
|
|
|
|
|
|
|
LL | (r#async) => (1)
|
|
|
|
| ^^^^^^^
|
2018-04-23 22:50:28 +00:00
|
|
|
|
2018-05-13 13:35:52 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-12-27 00:07:00 +00:00
|
|
|
|