Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
extern
/
issue-95829.rs
blob: ad4e04f7c3a9ade93795852a3b2af77b63a8af96 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
extern
{
async
fn
L
()
{
//~ ERROR: incorrect function inside `extern` block
//~^ ERROR: functions in `extern` blocks cannot have qualifiers
async
fn
M
()
{}
}
}
fn
main
()
{}