mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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 {
|
|
() => {}
|
|
}
|
|
}
|
|
};
|