mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-18 10:43:12 +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 {
|
|
() => {}
|
|
}
|
|
}
|
|
};
|