blob: 6887f9ff63d184d5468a1e390380a9b2f611bef6 [file] [log] [blame]
// This is a regression test for <https://github.com/rust-lang/rust/issues/98003>.
#![no_std]
//@ has "$.index[?(@.name=='glob')]"
//@ has "$.index[?(@.inner.use)].inner.use.name" \"*\"
mod m1 {
pub fn f() {}
}
mod m2 {
pub fn f(_: u8) {}
}
pub use m1::*;
pub use m2::*;
pub mod glob {
pub use *;
}