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

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

69 lines
2.1 KiB
Plaintext
Raw Normal View History

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