Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
issue-70736-async-fn-no-body-def-collector.rs
blob: d2bb0dc7631242e512e89f41056d70d6016760d5 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
async
fn
free
();
//~ ERROR without a body
struct
A
;
impl
A
{
async
fn
inherent
();
//~ ERROR without body
}
trait
B
{
async
fn
associated
();
}
impl
B
for
A
{
async
fn
associated
();
//~ ERROR without body
}
fn
main
()
{}