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.
1 parent 4a68f7e commit d5d1c57Copy full SHA for d5d1c57
src/test/rustdoc/src-links.rs
@@ -7,6 +7,11 @@
7
#[path = "src-links/mod.rs"]
8
pub mod qux;
9
10
+// @has src/foo/src-links.rs.html
11
+// @has foo/fizz/index.html '//a/@href' '../src/foo/src-links/fizz.rs.html'
12
+#[path = "src-links/../src-links/fizz.rs"]
13
+pub mod fizz;
14
+
15
// @has foo/bar/index.html '//a/@href' '../../src/foo/src-links.rs.html'
16
pub mod bar {
17
src/test/rustdoc/src-links/fizz.rs
@@ -0,0 +1 @@
1
+pub struct Buzz;
0 commit comments