about summary refs log tree commit diff
path: root/tests/rustdoc-json/reexport/macro.rs
blob: 0bd37768255bcaf2b1fa40c474fe1c741b1c14aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ edition:2018

//@ set repro_id = "$.index[?(@.name=='repro')].id"
#[macro_export]
macro_rules! repro {
    () => {};
}

//@ set repro2_id = "$.index[?(@.docs=='Re-export')].id"
/// Re-export
pub use crate::repro as repro2;

//@ ismany "$.index[?(@.name=='macro')].inner.module.items[*]" $repro_id $repro2_id