summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/namespaces.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/namespaces.rs')
-rw-r--r--src/test/rustdoc/namespaces.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/rustdoc/namespaces.rs b/src/test/rustdoc/namespaces.rs
deleted file mode 100644
index ad828e5ee..000000000
--- a/src/test/rustdoc/namespaces.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// issue #34843: rustdoc prioritises documenting reexports from the type namespace
-
-mod inner {
- pub mod sync {
- pub struct SomeStruct;
- }
-
- pub fn sync() {}
-}
-
-// @has namespaces/sync/index.html
-// @has namespaces/fn.sync.html
-// @has namespaces/index.html '//a/@href' 'sync/index.html'
-// @has - '//a/@href' 'fn.sync.html'
-#[doc(inline)]
-pub use inner::sync;