mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-05 08:27:00 +00:00
15 lines
219 B
Rust
15 lines
219 B
Rust
// check-pass
|
|
|
|
const _: () = {
|
|
#[macro_export]
|
|
macro_rules! first_macro {
|
|
() => {}
|
|
}
|
|
mod foo {
|
|
#[macro_export]
|
|
macro_rules! second_macro {
|
|
() => {}
|
|
}
|
|
}
|
|
};
|