2cd0d14eb1
- Suggest raw ident escaping in all editions - Keep primary label in all cases
46 lines
1.9 KiB
Plaintext
46 lines
1.9 KiB
Plaintext
error: expected identifier, found reserved keyword `async`
|
|
--> $DIR/edition-keywords-2018-2018-parsing.rs:8:13
|
|
|
|
|
LL | let mut async = 1; //~ ERROR expected identifier, found reserved keyword `async`
|
|
| ^^^^^ expected identifier, found reserved keyword
|
|
help: you can escape reserved keywords to use them as identifiers
|
|
|
|
|
LL | let mut r#async = 1; //~ ERROR expected identifier, found reserved keyword `async`
|
|
| ^^^^^^^
|
|
|
|
error: expected identifier, found reserved keyword `async`
|
|
--> $DIR/edition-keywords-2018-2018-parsing.rs:18:13
|
|
|
|
|
LL | module::async(); //~ ERROR expected identifier, found reserved keyword `async`
|
|
| ^^^^^ expected identifier, found reserved keyword
|
|
help: you can escape reserved keywords to use them as identifiers
|
|
|
|
|
LL | module::r#async(); //~ ERROR expected identifier, found reserved keyword `async`
|
|
| ^^^^^^^
|
|
|
|
error: no rules expected the token `r#async`
|
|
--> $DIR/edition-keywords-2018-2018-parsing.rs:12:31
|
|
|
|
|
LL | r#async = consumes_async!(r#async); //~ ERROR no rules expected the token `r#async`
|
|
| ^^^^^^^ no rules expected this token in macro call
|
|
|
|
error: no rules expected the token `async`
|
|
--> $DIR/edition-keywords-2018-2018-parsing.rs:13:35
|
|
|
|
|
LL | r#async = consumes_async_raw!(async); //~ ERROR no rules expected the token `async`
|
|
| ^^^^^ no rules expected this token in macro call
|
|
|
|
error: macro expansion ends with an incomplete expression: expected one of `move`, `|`, or `||`
|
|
--> <::edition_kw_macro_2018::passes_ident macros>:1:25
|
|
|
|
|
LL | ( $ i : ident ) => ( $ i )
|
|
| ^ expected one of `move`, `|`, or `||` here
|
|
|
|
|
::: $DIR/edition-keywords-2018-2018-parsing.rs:16:8
|
|
|
|
|
LL | if passes_ident!(async) == 1 {}
|
|
| -------------------- in this macro invocation
|
|
|
|
error: aborting due to 5 previous errors
|
|
|