]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/reexport-doc.rs
Rollup merge of #105459 - jyn514:proc-macro-default, r=Mark-Simulacrum
[rust.git] / src / test / rustdoc / reexport-doc.rs
1 // aux-build:reexport-doc-aux.rs
2
3 extern crate reexport_doc_aux as dep;
4
5 // @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;