| error: expected identifier, found keyword `async` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:21:13 |
| | |
| LL | let mut async = 1; |
| | ^^^^^ expected identifier, found keyword |
| | |
| help: escape `async` to use it as an identifier |
| | |
| LL | let mut r#async = 1; |
| | ++ |
| |
| error: expected identifier, found keyword `async` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:37:13 |
| | |
| LL | module::async(); |
| | ^^^^^ expected identifier, found keyword |
| | |
| help: escape `async` to use it as an identifier |
| | |
| LL | module::r#async(); |
| | ++ |
| |
| error: no rules expected `r#async` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:25:31 |
| | |
| LL | r#async = consumes_async!(r#async); |
| | ^^^^^^^ no rules expected this token in macro call |
| | |
| note: while trying to match keyword `async` |
| --> $DIR/auxiliary/edition-kw-macro-2018.rs:17:6 |
| | |
| LL | (async) => (1) |
| | ^^^^^ |
| |
| error: no rules expected keyword `async` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:26:35 |
| | |
| 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) |
| | ^^^^^^^ |
| |
| error: macro expansion ends with an incomplete expression: expected one of `move`, `use`, `{`, `|`, or `||` |
| --> $DIR/auxiliary/edition-kw-macro-2018.rs:27:23 |
| | |
| LL | ($i: ident) => ($i) |
| | ^ expected one of `move`, `use`, `{`, `|`, or `||` |
| | |
| ::: $DIR/edition-keywords-2018-2018-parsing.rs:29:8 |
| | |
| LL | if passes_ident!(async) == 1 {} // FIXME: Edition hygiene bug, async here is 2018 and reserved |
| | -------------------- in this macro invocation |
| |
| error: macro expansion ends with an incomplete expression: expected one of `move`, `use`, `{`, `|`, or `||` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:31:24 |
| | |
| LL | if passes_tt!(async) == 1 {} |
| | ^ expected one of `move`, `use`, `{`, `|`, or `||` |
| |
| error: macro expansion ends with an incomplete expression: expected one of `move`, `use`, `{`, `|`, or `||` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:14:23 |
| | |
| LL | ($i: ident) => ($i) |
| | ^ expected one of `move`, `use`, `{`, `|`, or `||` |
| |
| error: macro expansion ends with an incomplete expression: expected one of `move`, `use`, `{`, `|`, or `||` |
| --> $DIR/edition-keywords-2018-2018-parsing.rs:35:30 |
| | |
| LL | if local_passes_tt!(async) == 1 {} |
| | ^ expected one of `move`, `use`, `{`, `|`, or `||` |
| |
| error: aborting due to 8 previous errors |
| |