rust/tests/rustdoc/reexport-doc.rs

9 lines
213 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;