rust/tests/rustdoc-json/reexport/macro.rs
Alona Enraght-Moony 7ab71c417b tests/rustdoc-json: replace $.index[*][? with $.index[?
Done automatically with VSCode.
2025-03-21 00:48:09 +00:00

14 lines
312 B
Rust

//@ 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