mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 06:43:20 +03:00
15 lines
220 B
Rust
15 lines
220 B
Rust
//@ check-pass
|
|
|
|
const _: () = {
|
|
#[macro_export]
|
|
macro_rules! first_macro {
|
|
() => {}
|
|
}
|
|
mod foo {
|
|
#[macro_export]
|
|
macro_rules! second_macro {
|
|
() => {}
|
|
}
|
|
}
|
|
};
|