mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
9 lines
213 B
Rust
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;
|