rust/tests/rustdoc/reexport-doc.rs
2023-01-11 09:32:08 +00:00

9 lines
212 B
Rust

// aux-build:reexport-doc-aux.rs
extern crate reexport_doc_aux as dep;
// @has 'reexport_doc/struct.Foo.html'
// @count - '//p' 'These are the docs for Foo.' 1
/// These are the docs for Foo.
pub use dep::Foo;