mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
18 lines
518 B
Rust
18 lines
518 B
Rust
//@ aux-build:pub-use-extern-macros.rs
|
|
|
|
extern crate macros;
|
|
|
|
// @has pub_use_extern_macros/macro.bar.html
|
|
// @!has pub_use_extern_macros/index.html '//code' 'pub use macros::bar;'
|
|
pub use macros::bar;
|
|
|
|
// @has pub_use_extern_macros/macro.baz.html
|
|
// @!has pub_use_extern_macros/index.html '//code' 'pub use macros::baz;'
|
|
#[doc(inline)]
|
|
pub use macros::baz;
|
|
|
|
// @!has pub_use_extern_macros/macro.quux.html
|
|
// @!has pub_use_extern_macros/index.html '//code' 'pub use macros::quux;'
|
|
#[doc(hidden)]
|
|
pub use macros::quux;
|