rust/tests/rustdoc-json/reexport/macro.rs

14 lines
312 B
Rust
Raw Permalink Normal View History

//@ edition:2018
2021-10-14 00:12:18 +00:00
//@ set repro_id = "$.index[?(@.name=='repro')].id"
2021-10-14 00:12:18 +00:00
#[macro_export]
macro_rules! repro {
() => {};
}
//@ set repro2_id = "$.index[?(@.docs=='Re-export')].id"
/// Re-export
2021-10-14 00:12:18 +00:00
pub use crate::repro as repro2;
2022-07-19 15:57:38 +00:00
//@ ismany "$.index[?(@.name=='macro')].inner.module.items[*]" $repro_id $repro2_id