mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
16 lines
302 B
Rust
16 lines
302 B
Rust
// aux-build:async-trait-dep.rs
|
|
// edition:2021
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
extern crate async_trait_dep;
|
|
|
|
pub struct Oink {}
|
|
|
|
// @has 'async_trait/struct.Oink.html' '//h4[@class="code-header"]' "async fn woof()"
|
|
impl async_trait_dep::Meow for Oink {
|
|
async fn woof() {
|
|
todo!()
|
|
}
|
|
}
|