summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/auxiliary/async-trait-dep.rs
blob: 10a55dd0260efaf2fddf675c92ce12cd5e27b75b (plain)
1
2
3
4
5
6
7
8
9
// edition:2021

#![feature(async_fn_in_trait)]
#![allow(incomplete_features)]

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