rust/tests/rustdoc/auxiliary/async-trait-dep.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
116 B
Rust
Raw Normal View History

//@ edition:2021
#![allow(incomplete_features)]
pub trait Meow {
/// Who's a good dog?
async fn woof();
}