summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/reexport-doc.rs
blob: df2c889b4d57492ab64d2b3577c92b94c4d8460a (plain)
1
2
3
4
5
6
7
8
// 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;