0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-21 22:01:17 +01:00
rust/tests/rustdoc/reexport-doc.rs
2024-06-24 11:08:41 +02:00

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;