rust/tests/ui/editions/edition-keywords-2015-2018-parsing.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
798 B
Plaintext
Raw Normal View History

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