rust/tests/rustdoc/reexport-doc.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
213 B
Rust
Raw Permalink Normal View History

//@ 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;