summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/async-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/async-trait.rs')
-rw-r--r--src/test/rustdoc/async-trait.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/rustdoc/async-trait.rs b/src/test/rustdoc/async-trait.rs
deleted file mode 100644
index a473e4674..000000000
--- a/src/test/rustdoc/async-trait.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// aux-build:async-trait-dep.rs
-// edition:2021
-
-#![feature(async_fn_in_trait)]
-#![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!()
- }
-}