2019-09-28 16:15:06 +00:00
|
|
|
error: expected identifier, found keyword `async`
|
2020-03-18 12:34:11 +00:00
|
|
|
--> $DIR/edition-keywords-2018-2015-parsing.rs:16:13
|
2018-04-23 22:50:28 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let mut async = 1;
|
2019-09-28 16:15:06 +00:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2022-01-27 22:53:39 +00:00
|
|
|
help: escape `async` to use it as an identifier
|
2018-12-30 01:19:22 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let mut r#async = 1;
|
2022-01-27 22:53:39 +00:00
|
|
|
| ++
|
2018-04-23 22:50:28 +00:00
|
|
|
|
2023-11-06 21:06:20 +00:00
|
|
|
error: expected identifier, found keyword `async`
|
|
|
|
--> $DIR/edition-keywords-2018-2015-parsing.rs:26: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 the token `r#async`
|
|
|
|
--> $DIR/edition-keywords-2018-2015-parsing.rs:20:31
|
|
|
|
|
|
|
|
|
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-2015.rs:17:6
|
|
|
|
|
|
|
|
|
LL | (async) => (1)
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: no rules expected the token `async`
|
|
|
|
--> $DIR/edition-keywords-2018-2015-parsing.rs:21: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-2015.rs:22:6
|
|
|
|
|
|
|
|
|
LL | (r#async) => (1)
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: macro expansion ends with an incomplete expression: expected one of `move`, `|`, or `||`
|
|
|
|
--> $DIR/auxiliary/edition-kw-macro-2015.rs:27:23
|
|
|
|
|
|
|
|
|
LL | ($i: ident) => ($i)
|
|
|
|
| ^ expected one of `move`, `|`, or `||`
|
|
|
|
|
|
|
|
|
::: $DIR/edition-keywords-2018-2015-parsing.rs:24:8
|
|
|
|
|
|
|
|
|
LL | if passes_ident!(async) == 1 {}
|
|
|
|
| -------------------- in this macro invocation
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/edition-keywords-2018-2015-parsing.rs:29:33
|
|
|
|
|
|
|
|
|
LL | let _recovery_witness: () = 0;
|
|
|
|
| -- ^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-04-23 22:50:28 +00:00
|
|
|
|
2023-11-06 21:06:20 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|