rust/tests/rustdoc-html/async/auxiliary/async-trait-dep.rs
2026-01-07 14:23:30 +01:00

8 lines
116 B
Rust

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