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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
189 B
Rust
Raw Normal View History

2024-01-21 05:17:28 -06:00
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::*;