summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-21474.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/issue-21474.rs')
-rw-r--r--tests/rustdoc/issue-21474.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/rustdoc/issue-21474.rs b/tests/rustdoc/issue-21474.rs
deleted file mode 100644
index 5de26abac..000000000
--- a/tests/rustdoc/issue-21474.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-pub use inner::*;
-
-mod inner {
- impl super::Blah for super::What { }
-}
-
-pub trait Blah { }
-
-// @count issue_21474/struct.What.html \
-// '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
-pub struct What;