about summary refs log tree commit diff
path: root/tests/rustdoc/inline_cross/auxiliary/async-fn.rs
blob: 1a1a5f44af9088095dd0f94a1ef58f0fcb026417 (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
    }
}