]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/async-trait.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / rustdoc / async-trait.rs
CommitLineData
2b03887a
FG
1// aux-build:async-trait-dep.rs
2// edition:2021
3
4#![feature(async_fn_in_trait)]
5#![allow(incomplete_features)]
6
7extern crate async_trait_dep;
8
9pub struct Oink {}
10
11// @has 'async_trait/struct.Oink.html' '//h4[@class="code-header"]' "async fn woof()"
12impl async_trait_dep::Meow for Oink {
13 async fn woof() {
14 todo!()
15 }
16}