diff options
Diffstat (limited to 'tests/rustdoc/async/async-trait.rs')
| -rw-r--r-- | tests/rustdoc/async/async-trait.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/rustdoc/async/async-trait.rs b/tests/rustdoc/async/async-trait.rs new file mode 100644 index 00000000000..a6ee340e2dd --- /dev/null +++ b/tests/rustdoc/async/async-trait.rs @@ -0,0 +1,15 @@ +//@ 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!() + } +} |
