blob: df2af789166829a3ef215b72b64a3814c6dbd8b5 [file] [log] [blame]
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::*;