rust/tests/ui/imports/auxiliary/issue-114682-2-extern.rs

18 lines
189 B
Rust

macro_rules! m {
() => {
pub fn max() {}
pub(crate) mod max {}
};
}
mod d {
m! {}
}
mod e {
pub type max = i32;
}
pub use self::d::*;
pub use self::e::*;