about summary refs log tree commit diff
path: root/tests/rustdoc/auxiliary/async-trait-dep.rs
blob: d89ec6d2998f94c5336f48b21b3c1f312b9e659e (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();
}