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, 16 insertions, 0 deletions
diff --git a/src/test/rustdoc/namespaces.rs b/src/test/rustdoc/namespaces.rs
new file mode 100644
index 000000000..ad828e5ee
--- /dev/null
+++ b/src/test/rustdoc/namespaces.rs
@@ -0,0 +1,16 @@
+// 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;