Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
const-async-fn-in-main.rs
blob: 1a868c72d248ff577086e57685eaff3b53858a53 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
// Check what happens when a const async fn is in the main function (#102796)
fn
main
()
{
const
async
fn
a
()
{}
//~^ ERROR functions cannot be both `const` and `async`
}