2017-03-28 07:02:19 +00:00
|
|
|
// aux-build:pub-use-extern-macros.rs
|
|
|
|
|
2018-04-15 13:59:00 +00:00
|
|
|
extern crate macros;
|
2017-03-28 07:02:19 +00:00
|
|
|
|
2018-04-15 13:59:00 +00:00
|
|
|
// @has pub_use_extern_macros/macro.bar.html
|
2018-05-24 01:53:45 +00:00
|
|
|
// @!has pub_use_extern_macros/index.html '//code' 'pub use macros::bar;'
|
2017-03-28 07:02:19 +00:00
|
|
|
pub use macros::bar;
|
|
|
|
|
|
|
|
// @has pub_use_extern_macros/macro.baz.html
|
2018-05-24 01:53:45 +00:00
|
|
|
// @!has pub_use_extern_macros/index.html '//code' 'pub use macros::baz;'
|
2017-03-28 07:02:19 +00:00
|
|
|
#[doc(inline)]
|
|
|
|
pub use macros::baz;
|
|
|
|
|
2018-06-18 01:14:24 +00:00
|
|
|
// @!has pub_use_extern_macros/macro.quux.html
|
2018-05-24 01:53:45 +00:00
|
|
|
// @!has pub_use_extern_macros/index.html '//code' 'pub use macros::quux;'
|
2017-03-28 07:02:19 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use macros::quux;
|