summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-70736-async-fn-no-body-def-collector.rs
blob: aaf0f7eaef0dcdd3969dcb3d743d0b4fba8f69f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// edition:2018

async fn free(); //~ ERROR without a body

struct A;
impl A {
    async fn inherent(); //~ ERROR without body
}

trait B {
    async fn associated();
    //~^ ERROR cannot be declared `async`
}
impl B for A {
    async fn associated(); //~ ERROR without body
    //~^ ERROR cannot be declared `async`
    //~| ERROR has an incompatible type for trait
}

fn main() {}