We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8c52b3 + 33edea6 commit 9d3c802Copy full SHA for 9d3c802
tests/rustdoc-json/reexport/reexport_of_hidden.rs
@@ -0,0 +1,10 @@
1
+// compile-flags: --document-hidden-items
2
+
3
+// @has "$.index[*].inner[?(@.import.name=='UsedHidden')]"
4
+// @has "$.index[*][?(@.name=='Hidden')]"
5
+pub mod submodule {
6
+ #[doc(hidden)]
7
+ pub struct Hidden {}
8
+}
9
10
+pub use submodule::Hidden as UsedHidden;
0 commit comments