]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-json/reexport/macro.rs
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / rustdoc-json / reexport / macro.rs
1 // edition:2018
2
3 #![no_core]
4 #![feature(no_core)]
5
6 // @set repro_id = "$.index[*][?(@.name=='repro')].id"
7 #[macro_export]
8 macro_rules! repro {
9     () => {};
10 }
11
12 // @set repro2_id = "$.index[*][?(@.inner.name=='repro2')].id"
13 pub use crate::repro as repro2;
14
15 // @ismany "$.index[*][?(@.name=='macro')].inner.items[*]" $repro_id $repro2_id