We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5b1b74 commit 50d350bCopy full SHA for 50d350b
src/test/rustdoc/intra-doc-crate/auxiliary/hidden.rs
@@ -0,0 +1,19 @@
1
+#![crate_name = "hidden_dep"]
2
+#![deny(intra_doc_resolution_failure)]
3
+
4
+#[doc(hidden)]
5
+pub mod __reexport {
6
+ pub use crate::*;
7
+}
8
9
+pub mod future {
10
+ mod ready {
11
12
+ /// Link to [`ready`](function@ready)
13
+ pub struct Ready;
14
+ pub fn ready() {}
15
16
+ }
17
+ pub use self::ready::{ready, Ready};
18
19
src/test/rustdoc/intra-doc-crate/hidden.rs
@@ -0,0 +1,10 @@
+// aux-build:hidden.rs
+// build-aux-docs
+// tests https://github.com/rust-lang/rust/issues/73363
+extern crate hidden_dep;
+// @has 'hidden/struct.Ready.html' '//a/@href' '../hidden/fn.ready.html'
+pub use hidden_dep::future::{ready, Ready};
0 commit comments