Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
async-await
/
no-async-const.rs
blob: 38a5df3576bb0493093c095e48f1ed8e94986d2f [
file
] [
log
] [
blame
]
//@ edition:2018
//@ compile-flags: --crate-type lib
pub
async
const
fn
x
()
{}
//~^ ERROR expected one of `extern`, `fn`, `safe`, or `unsafe`, found keyword `const`
//~| ERROR functions cannot be both `const` and `async`