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 641bf08 commit a4279a1Copy full SHA for a4279a1
src/test/rustdoc/auxiliary/reexport-doc-aux.rs
@@ -0,0 +1,5 @@
1
+pub struct Foo;
2
+
3
+impl Foo {
4
+ pub fn foo() {}
5
+}
src/test/rustdoc/reexport-doc.rs
@@ -0,0 +1,8 @@
+// aux-build:reexport-doc-aux.rs
+extern crate reexport_doc_aux as dep;
+// @has 'reexport_doc/struct.Foo.html'
6
+// @count - '//p' 'These are the docs for Foo.' 1
7
+/// These are the docs for Foo.
8
+pub use dep::Foo;
0 commit comments