blob: 0c9a8b9175b3d137357a1655053516f235c16ac3 [file] [log] [blame]
//@ check-pass
// https://github.com/rust-lang/rust/issues/101076
const _: () = {
#[macro_export]
macro_rules! first_macro {
() => {}
}
mod foo {
#[macro_export]
macro_rules! second_macro {
() => {}
}
}
};