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 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);
| ^^^^^^^ 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 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);
| ^^^^^ 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 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