Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-76437-async.rs
blob: 84ee3dd21123c567b1bf9bbf433be1aa2c584d9d [
file
] [
log
] [
blame
]
// edition:2018
mod
t
{
async
pub
fn
t
()
{}
//~^ ERROR expected one of `extern`, `fn`, or `unsafe`, found keyword `pub`
//~| HELP visibility `pub` must come before `async`
}