summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-json/reexport/macro.rs
blob: b4882100f06562285914e32489a8d47329b1b80b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// edition:2018

#![no_core]
#![feature(no_core)]

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

// @set repro2_id = "$.index[*][?(@.inner.name=='repro2')].id"
pub use crate::repro as repro2;

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