blob: 6d7df57e7b6afee01eddf591ca8877049caf834d [file] [log] [blame]
error: expected identifier, found reserved keyword `async`
--> $DIR/no-const-async.rs:5:11
|
LL | pub const async fn x() {}
| ^^^^^ expected identifier, found reserved keyword
help: you can escape reserved keywords to use them as identifiers
|
LL | pub const r#async fn x() {}
| ^^^^^^^
error: expected `:`, found keyword `fn`
--> $DIR/no-const-async.rs:5:17
|
LL | pub const async fn x() {}
| ^^ expected `:`
error: aborting due to 2 previous errors