summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/auxiliary/async-trait-dep.rs
blob: d455ee99e093945a10a3774c4eadbe84d729875a (plain)
1
2
3
4
5
6
7
8
// edition:2021

#![allow(incomplete_features)]

pub trait Meow {
    /// Who's a good dog?
    async fn woof();
}