mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
539 B
Plaintext
16 lines
539 B
Plaintext
error: expected identifier, found keyword `async`
|
|
--> $DIR/edition-keywords-2015-2018-expansion.rs:8:5
|
|
|
|
|
LL | produces_async! {}
|
|
| ^^^^^^^^^^^^^^^^^^ expected identifier, found keyword
|
|
|
|
|
= note: this error originates in the macro `produces_async` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
help: escape `async` to use it as an identifier
|
|
--> $DIR/auxiliary/edition-kw-macro-2018.rs:7:19
|
|
|
|
|
LL | () => (pub fn r#async() {})
|
|
| ++
|
|
|
|
error: aborting due to previous error
|
|
|