mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
189 B
Rust
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::*;
|