Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
ui
/
async-await
/
no-const-async.rs
blob: 9f09d2188c7c080f6a7e2380d2f39d42fa5fabc6 [
file
] [
log
] [
blame
]
// compile-fail
// edition:2018
// compile-flags: --crate-type lib
#![
feature
(
async_await
)]
pub
const
async
fn
x
()
{}
//~^ ERROR expected identifier, found reserved keyword `async`
//~^^ expected `:`, found keyword `fn`