rust/tests/ui/resolve/issue-70736-async-fn-no-body-def-collector.rs
2023-10-13 21:01:36 +00:00

18 lines
250 B
Rust

// 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() {}