summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/inline_cross/auxiliary/async-fn.rs
blob: 564ca7d671e26087f613028e169428dba69ed0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// edition: 2021

pub async fn load() -> i32 {
    0
}

pub trait Load {
    async fn run(&self) -> i32;
}

pub struct Loader;

impl Load for Loader {
    async fn run(&self) -> i32 {
        1
    }
}