summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-json/reexport/glob_empty_mod.rs
blob: 8b7150c8fd706989d05f3985dfde61b2ec635226 (plain)
1
2
3
4
5
6
7
8
// Regression test for https://github.com/rust-lang/rust/issues/100973

// @is "$.index[*][?(@.name=='m1' && @.inner.module)].inner.module.is_stripped" true
// @set m1 = "$.index[*][?(@.name=='m1')].id"
mod m1 {}

// @is "$.index[*][?(@.inner.import)].inner.import.id" $m1
pub use m1::*;