mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
13 lines
204 B
Rust
13 lines
204 B
Rust
|
const _: () = {
|
||
|
#[macro_export]
|
||
|
macro_rules! first_macro {
|
||
|
() => {}
|
||
|
}
|
||
|
mod foo {
|
||
|
#[macro_export]
|
||
|
macro_rules! second_macro {
|
||
|
() => {}
|
||
|
}
|
||
|
}
|
||
|
};
|